~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzletest.cc

  • Committer: Patrick Galbraith
  • Date: 2008-08-22 20:19:13 UTC
  • mfrom: (365.1.2 drizzle)
  • Revision ID: patg@radha.local-20080822201913-njjzdfrlihco6ap1
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
6703
6703
    {
6704
6704
      internal_set_bit(start_states,states);
6705
6705
      internal_set_bit(word_states,states);
6706
 
      if (!from[i][2] && start_states->table_offset == (uint) ~0)
 
6706
      if (!from[i][2] && start_states->table_offset == UINT32_MAX)
6707
6707
      {
6708
6708
  start_states->table_offset=i;
6709
6709
  start_states->found_offset=0;
6767
6767
 
6768
6768
    /* If end of found-string not found or start-set with current set */
6769
6769
 
6770
 
    for (i= (uint) ~0; (i=get_next_bit(set,i)) ;)
 
6770
    for (i= UINT32_MAX; (i=get_next_bit(set,i)) ;)
6771
6771
    {
6772
6772
      if (!follow[i].chr)
6773
6773
      {
6782
6782
 
6783
6783
    /* Find all chars that follows current sets */
6784
6784
    memset(used_chars, 0, sizeof(used_chars));
6785
 
    for (i= (uint) ~0; (i=get_next_bit(sets.set+used_sets,i)) ;)
 
6785
    for (i= UINT32_MAX; (i=get_next_bit(sets.set+used_sets,i)) ;)
6786
6786
    {
6787
6787
      used_chars[follow[i].chr]=1;
6788
6788
      if ((follow[i].chr == SPACE_CHAR && !follow[i+1].chr &&
6809
6809
  new_set->found_offset=set->found_offset+1;
6810
6810
  found_end=0;
6811
6811
 
6812
 
  for (i= (uint) ~0 ; (i=get_next_bit(sets.set+used_sets,i)) ; )
 
6812
  for (i= UINT32_MAX ; (i=get_next_bit(sets.set+used_sets,i)) ; )
6813
6813
  {
6814
6814
    if (!follow[i].chr || follow[i].chr == chr ||
6815
6815
        (follow[i].chr == SPACE_CHAR &&
6830
6830
  {
6831
6831
    new_set->found_len=0;      /* Set for testing if first */
6832
6832
    bits_set=0;
6833
 
    for (i= (uint) ~0; (i=get_next_bit(new_set,i)) ;)
 
6833
    for (i= UINT32_MAX; (i=get_next_bit(new_set,i)) ;)
6834
6834
    {
6835
6835
      if ((follow[i].chr == SPACE_CHAR ||
6836
6836
     follow[i].chr == END_OF_LINE) && ! chr)
6949
6949
    memset(&set->next[0], 0, sizeof(set->next[0])*LAST_CHAR_CODE);
6950
6950
    set->found_offset=0;
6951
6951
    set->found_len=0;
6952
 
    set->table_offset= (uint) ~0;
 
6952
    set->table_offset= UINT32_MAX;
6953
6953
    set->size_of_bits=sets->size_of_bits;
6954
6954
    return set;
6955
6955
  }