|
|
|
perl5/diagnostics(3) -- Perl compiler pragma to force verbose warning diagnostics splain - standalone program to do the same thing
|
|
The diagnostics Pragma This module extends the terse diagnostics normally emitted by both the perl compiler and the perl interpeter, augmenting them with the more explicative and endearing descriptions found in the perldiag manpage. Like the other pragmata, it affects the compilation phase of your program rather than merely the execution phase. To use in your program as a pragma, merely invoke use diagnostics; at the start (or near the start) of your program. (Note that this does enable perl's ... |
|
dial(3c) -- establish an out-going terminal line connection
|
|
dial returns a file-descriptor for a terminal line open for read/write. The argument to dial is a CALL structure (defined in the header file). When finished with the terminal line, the calling program must invoke undial to release the semaphore that has been set during the allocation of the terminal device. The definition of CALL in the header file is: typedef struct { struct termio *attr; /* pointer to termio attribute struct */ int baud; /* transmission data rate */ int speed... |
|
|
Tk/dialog(3) -- Create modal dialog and wait for response
|
|
This procedure is part of the Tk script library. Its arguments describe a dialog box: window Name of top-level window to use for dialog. Any existing window by this name is destroyed. title Text to appear in the window manager's title bar for the dialog. text Message to appear in the top portion of the dialog box. bitmap If non-empty, specifies a bitmap to display in the top portion of the dialog, to the left of the text. If this is an empty string then no bitmap is displayed in the dialog. def... |
|
difftime(3c) -- compute difference between two calendar times
|
|
difftime computes the difference between two calendar times: time1 - time0. |
|
f90/digits(3) -- Returns the number of significant digits
|
|
UNICOS, UNICOS/mk, and IRIX systems |
|
ftn/dim(3) -- FORTRAN positive difference intrinsic functions
|
|
These functions return: arg1-arg2 if arg1 > arg2 0 if arg1 <= arg2 PPPPaaaaggggeeee 1111 |
|
directory(3b) -- directory operations (4.3BSD)
|
|
The inclusion of selects the 4.3BSD versions of these routines. For the System V versions, include . opendir opens the directory named by filename and associates a directory stream with it. opendir returns a pointer to be used to identify the directory stream in subsequent operations. The pointer NULL is returned if filename cannot be accessed, or if it cannot malloc(3) enough memory to hold the whole thing. readdir returns a pointer to the next directory entry. It returns ... |
|
directory(3c) -- directory operations
|
|
The inclusion of selects the System V versions of these routines. For the 4.3BSD versions, include . The 64-bit interfaces are not present in the 4.3BSD versions. opendir opens the directory named by filename and associates a directory stream with it. opendir returns a pointer to be used to identify the directory stream in subsequent operations. The directory stream is positioned at the first entry. A null pointer is returned if filename cannot be acces... |
|
perl5/DirHandle(3) -- supply object methods for directory handles
|
|
The DirHandle method provide an alternative interface to the opendir(), closedir(), readdir(), and rewinddir() functions. The only objective benefit to using DirHandle is that it avoids namespace pollution by creating globs to hold directory handles. PPPPaaaaggggeeee 1111 |
|
dirname(3g) -- report the parent directory name of a file pathname
|
|
Given a pointer to a null-terminated character string that contains a filesystem pathname, dirname returns a pointer to a static constant string that is the parent directory of that file. In doing this, it sometimes places a null byte in the pathname after the next to last element, so the content of path must be disposable. Trailing ``/'' characters in the path are not counted as part of the path. If path or *path is zero, a pointer to a static constant ``.'' is re... |
|
f90/disable_ieee_interrupt(3) -- Disables floating-point interrupt
|
|
UNICOS/mk and IRIX systems CRAY T90 systems that support IEEE floating-point arithmetic |
|
standard/disasm(3) -- disassembler functions
|
|
Three sets of register names which people might want to use: compiler: zero, at, v0, ... hardware: r0, r1, r2, ... assembler: $0, $at, $2,... dis_init, dis_init32, and dis_init64 functions initialize disassembler and set options for disassembly. "addr_format" and "value_format" specify in the style of "printf" the null-terminated formats for printing the address and value of the instruction. If nil, they default to "%#010x"; if they are the empty string, we omit to print these items. "r... |
|
standard/disassembler(3) -- disassemble a MIPS instruction and print the results
|
|
Disassembler disassembles and prints a MIPS machine instruction on stdout. Iadr is the instruction address to be disassembled. Regstyle specifies how registers are named in the disassembly; if the value is 0, compiler names are used; otherwise, hardware names are used. The next four arguments are function pointers, most of which give the caller some flexibility in the appearance of the disassembly. The only function that MUST be provided is get_bytes. All other functions are optional. Get_bytes ... |
|
standard/displacepolygon(3) -- specifies a displacement for the z values of rendered polygons
|
|
displacepolygon offsets the z values of rendered pixels for polygons. The term scalefactor*max(abs(dz/dx),abs(dz/dy)) is added to the z values of rendered pixels, where dz/dx and dz/dy are the slopes of the triangle in window coordinates. scalefactor is a signed float value. displacepolygon is effectively disabled by setting scalefactor to 0.0, which is the default. displacepolygon is recommended when rendering a z buffer that is later defined (see texdef) as a texture for generating shadows. It... |
|
standard/dither(3) -- controls the dithering of pixels
|
|
mode expects one of two values: DT_OFF disables dithering. DT_ON enables dithering (default). |