Home
last modified time | relevance | path

Searched refs:pentry (Results 1 – 8 of 8) sorted by relevance

/external/svox/pico/lib/
Dpicoklex.c540 picoos_uint32 pentry; in picoklex_lexIndLookup() local
549 pentry = 0x000000ff & (ind[0]); in picoklex_lexIndLookup()
550 pentry |= ((picoos_uint32)(ind[1]) << 8); in picoklex_lexIndLookup()
551 pentry |= ((picoos_uint32)(ind[2]) << 16); in picoklex_lexIndLookup()
554 if (pentry >= ((picoos_uint32)klex->nrblocks * PICOKLEX_LEXBLOCK_SIZE)) { in picoklex_lexIndLookup()
558 pentry += (klex->lexblocks[pentry]); in picoklex_lexIndLookup()
559 *phonlen = (klex->lexblocks[pentry++]) - 2; in picoklex_lexIndLookup()
560 *pos = klex->lexblocks[pentry++]; in picoklex_lexIndLookup()
561 *phon = &(klex->lexblocks[pentry]); in picoklex_lexIndLookup()
563 PICODBG_DEBUG(("pentry: %d, phonlen: %d", pentry, *phonlen)); in picoklex_lexIndLookup()
/external/syslinux/utils/
Dmkdiskimage.in98 $pentry = 1;
99 $pentry = 2 if ( $opt{'2'} );
100 $pentry = 3 if ( $opt{'3'} );
101 $pentry = 4 if ( $opt{'4'} );
207 if ( $i == $pentry ) {
254 $pstart = $header_size + 446 + 16*($pentry-1);
Disohybrid.in234 $pentry = $opt{'entry'}; # Partition slot
237 if ( $i == $pentry ) {
/external/e2fsprogs/lib/ext2fs/
Ddosio.c114 static PTABLE_ENTRY *scan_partition_table(PTABLE_ENTRY *pentry, in scan_partition_table() argument
125 if(pentry[*pno].type == LINUX_EXT2FS) in scan_partition_table()
126 return &pentry[*pno]; in scan_partition_table()
129 if(!pentry[*pno].type) in scan_partition_table()
131 else if(pentry[*pno].type == LINUX_SWAP) in scan_partition_table()
138 if(pentry[i].type == LINUX_EXT2FS) in scan_partition_table()
141 return &pentry[i]; in scan_partition_table()
/external/syslinux/bios/utils/
Dmkdiskimage98 $pentry = 1;
99 $pentry = 2 if ( $opt{'2'} );
100 $pentry = 3 if ( $opt{'3'} );
101 $pentry = 4 if ( $opt{'4'} );
207 if ( $i == $pentry ) {
254 $pstart = $header_size + 446 + 16*($pentry-1);
Disohybrid.pl234 $pentry = $opt{'entry'}; # Partition slot
237 if ( $i == $pentry ) {
/external/icu/icu4c/source/tools/tzcode/
Dzdump.c1057 listentry * pentry; in getzones() local
1064 if ((pentry = malloc(sizeof(listentry))) == NULL) { in getzones()
1068 pentry->name = pzonename; in getzones()
1069 pentry->next = NULL; in getzones()
1070 (*last)->next = pentry; in getzones()
1071 *last = pentry; in getzones()
/external/fio/
Dgfio.c535 GtkWidget *dialog, *box, *vbox, *hbox, *frame, *pentry; in get_connection_details() local
569 pentry = create_spinbutton(hbox, 1, 65535, FIO_NET_PORT); in get_connection_details()
614 ge->port = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(pentry)); in get_connection_details()