/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_fs_vector_splitting.cpp | 28 * split those components out to individual variables so they can be 116 /* Can't split varyings or uniforms. Function in/outs won't get split 176 /* We'll split copies of a vector to copies of channels, so don't 196 * split them, so just accept the body here. 343 /* Trim out variables we can't split. */ 363 /* Replace the decls of the vectors to be split with their split 386 ir_vector_splitting_visitor split(&refs.variable_list); 387 visit_list_elements(&split, instructions) [all...] |
/external/chromium_org/tools/cygprofile/ |
symbolize.py | 50 fields = line.split() 80 nm_lines = output.split('\n') 92 # If the length of the split line is not 4, then it does not contain all the 94 if len(nm_symbols[nm_index].split()) == 4: 95 (addr, size) = [int(x, 16) for x in nm_symbols[nm_index].split()[0:2]] 103 addr == int(nm_symbols[nm_index].split()[0], 16)): 104 if len(nm_symbols[nm_index].split()) == 4: 105 fnames.append(nm_symbols[nm_index].split()[3]) 174 output = (p.communicate()[0]).split('\n') 204 lib_name = lib_file.split('/')[-1].strip( [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_vector_splitting.cpp | 28 * split those components out to individual variables so they can be 116 /* Can't split varyings or uniforms. Function in/outs won't get split 176 /* We'll split copies of a vector to copies of channels, so don't 196 * split them, so just accept the body here. 343 /* Trim out variables we can't split. */ 363 /* Replace the decls of the vectors to be split with their split 386 ir_vector_splitting_visitor split(&refs.variable_list); 387 visit_list_elements(&split, instructions) [all...] |
/external/llvm/lib/IR/ |
DataLayout.cpp | 179 /// Checked version of split, to ensure mandatory subparts. 180 static std::pair<StringRef, StringRef> split(StringRef Str, char Separator) { function 182 std::pair<StringRef, StringRef> Split = Str.split(Separator); 183 assert((!Split.second.empty() || Split.first == Str) && 185 return Split; 204 // Split at '-'. 205 std::pair<StringRef, StringRef> Split = split(Desc, '-') [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/tests/ |
dromaeo-object-regexp.html | 44 // TESTS: split 54 test( "Compiled Object Empty Split", function(){ 56 ret = tmp[i].split( re ); 64 test( "Compiled Object Char Split", function(){ 66 ret = tmp[i].split( re ); 74 test( "Compiled Object Variable Split", function(){ 76 ret = tmp[i].split( re );
|
dromaeo-object-string.html | 57 // TESTS: split 58 test( "String Split", function(){ 59 ret = str.split(""); 70 test( "String Split on Char", function(){ 71 ret = tmpstr.split("a");
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
opt_structure_splitting.cpp | 28 * split those components out to individual variables so they can be 169 /* We'll split copies of a structure to copies of components, so don't 321 /* Trim out variables we can't split. */ 341 /* Replace the decls of the structures to be split with their split 369 ir_structure_splitting_visitor split(&refs.variable_list); 370 visit_list_elements(&split, instructions);
|
/external/clang/utils/ |
token-delta.py | 46 return self.delta(changes, self.split(changes)) 48 def split(self, S): member in class:DeltaAlgorithm 49 """split(set) -> [sets] 54 # There are many ways to split, we could do a better job with more 76 refined = sum(map(list, map(self.split, sets)), []) 86 return self.delta(S, self.split(S)) 118 for ln in err.split('\n'):
|
/external/llvm/include/llvm/MC/ |
MCAtom.h | 47 /// For instance, split must me given the start address of an instruction. 53 virtual MCAtom *split(uint64_t SplitPt) = 0; 95 /// \brief Remap the atom to prepare for a split at SplitPt. 144 /// \name Atom type specific split/truncate logic. 146 MCTextAtom *split(uint64_t SplitPt) LLVM_OVERRIDE; 175 /// \name Atom type specific split/truncate logic. 177 MCDataAtom *split(uint64_t SplitPt) LLVM_OVERRIDE;
|
/external/mesa3d/src/glsl/ |
opt_structure_splitting.cpp | 28 * split those components out to individual variables so they can be 169 /* We'll split copies of a structure to copies of components, so don't 321 /* Trim out variables we can't split. */ 341 /* Replace the decls of the structures to be split with their split 369 ir_structure_splitting_visitor split(&refs.variable_list); 370 visit_list_elements(&split, instructions);
|
/external/oprofile/events/i386/p4/ |
unit_masks | 22 0x01 load split completed, excluding UC/WC loads 23 0x02 any split stores completed 24 0x04 uncacheable load split completed 25 0x08 uncacheable store split complete 27 0x02 split load 29 0x02 split store 69 0x100 request type is 8-byte chunk split across 8-byte boundary
|
/external/qemu/android/ |
boot-properties.c | 170 /* split in key and value, so we can re-use boot_property_add (and its 174 char *split = strchr(p->property, '='); local 175 if (split == NULL) { 182 *split = '\0'; /* p->property is now "<key>\0<value>\0" */ 184 uint32_t key_buf_len = (split - p->property) + 1; // +1: '\0' terminator 190 qemu_put_buffer(f, (uint8_t*) split + 1, value_buf_len); 192 *split = '='; /* restore property to "<key>=<value>\0" */
|
/external/webrtc/src/common_audio/vad/ |
vad_filterbank.c | 135 // have at most 120 samples after the first split and at most 60 samples after 136 // the second split. 146 // Split at 2000 Hz and downsample 151 // Split at 3000 Hz and downsample 171 // Split at 1000 Hz and downsample 186 // Split at 500 Hz 201 // Split at 250 Hz
|
/external/opencv/ml/src/ |
mlboost.cpp | 168 // if the node has not been split, 186 int i, n = node->sample_count, vi = node->split->var_idx; 189 assert( !node->split->inversed ); 191 if( data->get_var_type(vi) >= 0 ) // split on categorical var 194 const int* subset = node->split->subset; 209 else // split on ordered var 212 int split_point = node->split->ord.split_point; 239 return node->split->quality/(L + R); 333 CvDTreeSplit* split; local 427 split = data->new_split_cat( vi, (float)best_val ) 490 CvDTreeSplit* split; local 647 CvDTreeSplit* split = data->new_split_cat( vi, 0 ); local [all...] |
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/ |
TerrainQuad.java | 225 split(patchSize, heightMap);
661 * <code>split</code> divides the heightmap data for four children. The
671 protected void split(int blockSize, float[] heightMap) {
698 int split = (size + 1) >> 1;
707 float[] heightBlock1 = createHeightSubBlock(heightMap, 0, 0, split);
718 split, stepScale, heightBlock1, totalSize, tempOffset,
725 float[] heightBlock2 = createHeightSubBlock(heightMap, 0, split - 1,
726 split);
738 split, stepScale, heightBlock2, totalSize, tempOffset,
745 float[] heightBlock3 = createHeightSubBlock(heightMap, split - 1, 0, [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
posixpath.py | 28 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 84 # Split a path in head (everything up to the last '/') and tail (the 89 def split(p): function 90 """Split a pathname. Returns tuple "(head, tail)" where "tail" is 99 # Split a path in root and extension. 108 # Split a pathname into a drive specification and the rest of the 112 """Split a pathname into drive and path. On Posix, drive is always 117 # Return the tail (basename) part of a path, same as split(path)[1]. 125 # Return the head (dirname) part of a path, same as split(path)[0]. 333 comps = path.split('/') [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
posixpath.py | 28 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 84 # Split a path in head (everything up to the last '/') and tail (the 89 def split(p): function 90 """Split a pathname. Returns tuple "(head, tail)" where "tail" is 99 # Split a path in root and extension. 108 # Split a pathname into a drive specification and the rest of the 112 """Split a pathname into drive and path. On Posix, drive is always 117 # Return the tail (basename) part of a path, same as split(path)[1]. 125 # Return the head (dirname) part of a path, same as split(path)[0]. 333 comps = path.split('/') [all...] |
/external/chromium_org/chrome/tools/convert_dict/ |
aff_reader.cc | 313 std::vector<std::string> split; local 314 split.push_back(utf8rule.substr(0, space_index)); 315 split.push_back(utf8rule.substr(space_index + 1)); 319 std::replace(split[0].begin(), split[0].end(), '_', ' '); 320 std::replace(split[1].begin(), split[1].end(), '_', ' '); 322 replacements_.push_back(std::make_pair(split[0], split[1]));
|
/external/llvm/include/llvm/Transforms/Utils/ |
BasicBlockUtils.h | 74 /// split the critical edge. This will update DominatorTree and 77 /// was split, null otherwise. 102 /// false. Otherwise, split all edges between the two blocks and return true. 115 /// SplitCriticalEdge - If an edge from Src to Dst is critical, split the edge 134 /// SplitEdge - Split the edge connecting specified block. Pass P must 138 /// SplitBlock - Split the specified block at the specified instruction - every 154 /// complicated to handle the case where one of the edges being split 170 /// case where one of the edges being split is an exit of a loop with other 185 /// SplitBlockAndInsertIfThen - Split the containing block at the
|
/dalvik/vm/ |
Android.mk | 58 # TODO: split out the asflags. 68 # TODO: split out the asflags. 80 # TODO: split out the asflags. 92 # TODO: split out the asflags. 138 # TODO: split out the asflags.
|
/external/chromium/chrome/browser/resources/net_internals/ |
resizableverticalsplitview.js | 6 * This view implements a vertically split display with a draggable divider. 36 // vertical split. 54 // If this is the first setGeometry(), initialize the split point at 50%. 58 // Calculate the horizontal split points. 69 // Position the boxes using calculated split points.
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
resizable_vertical_split_view.js | 6 * This view implements a vertically split display with a draggable divider. 51 // vertical split. The start event must occur within the sizer's node, 83 // If this is the first setGeometry(), initialize the split point at 50%. 87 // Calculate the horizontal split points. 98 // Position the boxes using calculated split points.
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
path.cc | 42 StringArray_t paths = Split(path); 55 StringArray_t paths = Split(path); 67 StringArray_t paths = Split(path); 92 StringArray_t Path::Split() const { 172 StringArray_t Path::Split(const std::string& path) {
|
/external/chromium_org/third_party/WebKit/Source/core/scripts/ |
in_file.py | 125 name, value = line.split('=') 134 parts = line.split(' ') 136 # re-join the rest of the line and split on ',' 137 args_list = ' '.join(parts[1:]).strip().split(',') 143 arg_name, arg_value = arg_string.split('=')
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
r300_fragprog_swizzle.c | 150 struct rc_swizzle_split * split) 152 split->NumPhases = 0; 191 split->Phase[split->NumPhases++] = best_matchmask; 198 .Split = r300_swizzle_split
|