Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

vhdlablvector(3) [debian man page]

VHDLABLVECTOR(3)						   ABL FUNCTIONS						  VHDLABLVECTOR(3)

NAME
vhdlablvector - gives the index and the name of a vectorized name. ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "abl101.h" char *vhdlablvector( Name, Index ) char *Name; long *Index; PARAMETERS
Name A vectorized name. Index A pointer to long. DESCRIPTION
vhdlablvector searches the index of a vectorized name, and the vector's name. RETURN VALUE
If Name is a vectorized name, vhdlablvector returns the vector's name using namealloc, and its index throw Index. Otherwise, it returns a null pointer. EXAMPLE
#include "abl101.h" long Index; char *Name; Name = vhdlablvector( "vec 2", &Index ); /* displays Name:vec, Index:2 */ printf( "Name:%s, Index:%d0, Name, Index ); SEE ALSO
abl(1), ablvhdlname(3). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 VHDLABLVECTOR(3)

Check Out this Related Man Page

GETBDDVARBYINDEX(3)						   BDD FUNCTIONS					       GETBDDVARBYINDEX(3)

NAME
getbddvarbyindex - converts bdd index to a variable number. ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "bdd101.h" bddindex getbddvarbyindex( BddSystem, Index ) bddsystem *BddSystem; bddindex Index; PARAMETERS
BddSystem The bdd system. Index The bdd index to convert. DESCRIPTION
getbddvarbyindex converts the bdd index Index to a variable number, in the bdd system BddSystem. If a null pointer is given, the default bdd system is used. The function uses simply the translation table BddSystem->INDEX_TO_VAR. RETURN VALUE
getbddvarbyindex returns the variable number of the bdd index Index. ERRORS
"index xxx out of range, error !" The Index parameter must be a valid index. EXAMPLE
#include "bdd101.h" bddsystem *BddSystem; bddnode *BddNode; BddSystem = createbddsystem( 100, 1000, 100, 50000 ); BddNode = addbddvar( (bddsystem *)0, 0 ); /* displays 0 */ printf( "%d", getbddvarbyindex( (bddsystem *)0, BddNode->INDEX ) ); destroybddsystem( (bddsystem *)0 ); SEE ALSO
bdd(1) BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 GETBDDVARBYINDEX(3)
Man Page

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Index Command

Hi, can anyone explain me how this works (how the flow goes)? Example: CLIENT="UNIXHELP" The second argument passed $2="UNIX" RESULT=`awk -F"=" '/CLIENTS=/ {len = index($2,"'${CLIENT}'");print len }' $2` Thanks in advance. (1 Reply)
Discussion started by: abrd600
1 Replies

2. Programming

Reg: char ptr - Coredumps

#include <stdio.h> void main() { int Index=1; char *Type=NULL; Type = (char *)Index; printf("%s",Type); } Getting coredump (5 Replies)
Discussion started by: vijaysabari
5 Replies

3. UNIX for Dummies Questions & Answers

Spectral Index in IRAF

Dear all, I want to find the spectral Index from the reduced spectra of various molecular bands like TiO (band width 7042 angstrom-7046 angstrom) in the in IRAF. I have reduced the spectra in IRAF but now I don't know how to find these band strength (spectral indices) in IRAF. ... (0 Replies)
Discussion started by: arvindr
0 Replies

4. Homework & Coursework Questions

Compare to values in a file in unix

Here is sample file ===============Index 0=================== isActive=0, Input=1, Output=1, Status=1 State = Future , PRIMARY UnderCount=2 inCount=2 outCount=0 SCount=673 -- ===============Index 1=================== isActive=0, Input=1, Output=1, Status=1 ... (1 Reply)
Discussion started by: sooda
1 Replies

5. Shell Programming and Scripting

sed print between 2 patterns only last occurence

Hi, I have a file, which contains the following log data. I am trying to print fromt he file the following data: I have tried using sed, but I am getting from the first pattern Thanks for your help. (5 Replies)
Discussion started by: sol_nov
5 Replies

6. High Performance Computing

Vectorization

Hi, I have the following vectorized code: long valor = 0, i=0; __m128i vsum, vecPi, vecCi, vecQCi; vsum = _mm_set1_epi32(0); int32_t * const pA = A->data; int32_t * const pB = B->data; int sumDot; for( ; i<SIZE-3 ;i+=4){ vecPi = _mm_loadu_si128((__m128i *)&(pA) ); ... (2 Replies)
Discussion started by: a3mlord
2 Replies

7. Post Here to Contact Site Administrators and Moderators

How to read the nth character from the line.?

I have Index Line and I tried to get the 9th character from the file and to check the character is "|" or not. Shell Scripting. Sample Index file. "91799489|K8E|188.004.A.917994892.1099R.c.01.pdf|2013|10/15/2014|002|B|C|C"... (3 Replies)
Discussion started by: pavand
3 Replies