1// Copyright (c) 2009 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4//
5// Created by postproc-shortwords 1.8 on 2009-03-22 11:11:34
6// From input file /tmp/good_quad_input4567_sort.utf8
7// See compact_lang_det.cc for usage
8//
9#include "encodings/compact_lang_det/cldutil.h"
10
11// Suppressed:
12//      ms-Latn gl-Latn mt-Latn af-Latn eu-Latn mk-Cyrl fa-Arab
13
14// Remapped:
15//      xxx-Latn=>ut-Latn sh-Latn=>hr-Latn sh-Cyrl=>sr-Cyrl
16
17// ms/id probabilities leveled
18
19static const int kQuadTableBuildDate = 20090322;    // yyyymmdd
20
21COMPILE_ASSERT(MONTENEGRIN == 160, k_montenegrin_changed);
22COMPILE_ASSERT(EXT_NUM_LANGUAGES == 209, k_ext_num_languages_changed);
23
24
25static const int kQuadTableSize = 1;    // Bucket count
26static const int kQuadTableKeyMask = 0xffffffff;    // Mask hash key
27
28
29// Empty table
30static const cld::IndirectProbBucket4 kQuadTable[kQuadTableSize] = {
31  // key[4], words[4] in UTF-8
32  // value[4]
33  { {0x00000000,0x00000000,0x00000000,0x00000000}},  // [000] c
34};
35
36static const uint32 kQuadTableInd[1] = {
37  // [0000]
38  0x00000000, };
39
40
41extern const cld::CLDTableSummary kQuadTable_obj = {
42  kQuadTable,
43  kQuadTableInd,
44  kQuadTableSize,
45  arraysize(kQuadTableInd),
46  kQuadTableKeyMask,
47  kQuadTableBuildDate,
48};
49
50// End of generated tables
51